|
xorp
|
00001 // -*- c-basic-offset: 4; tab-width: 8; indent-tabs-mode: t -*- 00002 00003 // Copyright (c) 2001-2011 XORP, Inc and Others 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License, Version 2, June 00007 // 1991 as published by the Free Software Foundation. Redistribution 00008 // and/or modification of this program under the terms of any other 00009 // version of the GNU General Public License is not permitted. 00010 // 00011 // This program is distributed in the hope that it will be useful, but 00012 // WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For more details, 00014 // see the GNU General Public License, Version 2, a copy of which can be 00015 // found in the XORP LICENSE.gpl file. 00016 // 00017 // XORP Inc, 2953 Bunker Hill Lane, Suite 204, Santa Clara, CA 95054, USA; 00018 // http://xorp.net 00019 00020 // $XORP: xorp/bgp/peer_list.hh,v 1.14 2008/10/02 21:56:17 bms Exp $ 00021 00022 #ifndef __BGP_PEER_LIST_HH__ 00023 #define __BGP_PEER_LIST_HH__ 00024 00025 00026 00027 #include "peer.hh" 00028 00029 class BGPPeer; 00030 00031 class BGPPeerList 00032 { 00033 public: 00034 BGPPeerList(); 00035 ~BGPPeerList(); 00036 00044 void all_stop(bool restart = false); 00045 00052 bool not_all_idle(); 00053 00057 void add_peer(BGPPeer *p); 00058 00062 void remove_peer(BGPPeer *p); 00063 00067 void detach_peer(BGPPeer *p); 00068 00072 list<BGPPeer *>& get_list() {return _peers;} 00073 00077 void dump_list(); 00078 00082 bool get_peer_list_start(uint32_t& token); 00083 00087 bool get_peer_list_next(const uint32_t& token, 00088 string& local_ip, 00089 uint32_t& local_port, 00090 string& peer_ip, 00091 uint32_t& peer_port); 00092 protected: 00093 private: 00094 list<BGPPeer *> _peers; 00095 map <uint32_t, list<BGPPeer *>::iterator> _readers; 00096 uint32_t _next_token; 00097 }; 00098 00099 #endif // __BGP_PEER_LIST_HH__