class NextHopRibRequest

Make requests of the RIB and get responses. More...

 
LOGO
 Annotated List  Files  Globals  Hierarchy  Index  Top

Public Methods


Detailed Description

Make requests of the RIB and get responses.

At any time there is only ever one outstanding request to the RIB. Firstly we don't want to overrun the RIB with requests. Secondly it is possible that different next hops in the queue of requests may resolve to the same address/prefix_len answer (see below).

 NextHopRibRequest (XrlStdRouter *, NextHopResolver<A>& next_hop_resolver, NextHopCache<A>& next_hop_cache, BGPMain& bgp)

NextHopRibRequest

 ~NextHopRibRequest ()

~NextHopRibRequest

bool  register_ribname (const string& r)

register_ribname

void  register_nexthop (A nexthop, IPNet<A> net, NhLookupTable<A> *requester)

register_nexthop

Register interest with the RIB about this next hop.

Parameters:

nexthopThe next hop that we are attempting to resolve.
netThe subnet that this next hop is associated with.
requesterThe lookup table that wants to be notified when the response comes back.
void  send_next_request ()

send_next_request

Send the next queued request

void  register_interest (A nexthop)

register_interest

Actually register interest with the RIB.

A small method that will be specialized to differentiate between IPv4 and IPv6.

Parameters:

nexthopThe next hop that we are attempting to resolve.
void  register_interest_response (const XrlError& error, const bool *resolves, const A *addr, const uint32_t *prefix_len, const uint32_t *real_prefix_len, const A *actual_nexthop, const uint32_t *metric, const A nexthop_interest, const string comment)

register_interest_response

XRL callback from register_interest.

bool  premature_invalid (const A& addr, const uint32_t& prefix_len)

premature_invalid

An unmatched invalidate has been received.

bool  tardy_invalid (const A& addr, const uint32_t& prefix_len)

tardy_invalid

An invalidate has been received after we deregistered interest.

bool  deregister_nexthop (A nexthop, IPNet<A> net, NhLookupTable<A> *requester)

deregister_nexthop

Deregister interest with the RIB about this next hop.

Parameters:

nexthopThe next hop that we are attempting to resolve.
netThe subnet that this next hop is associated with.
requesterThe lookup table that wants to be notified when the response comes back.

Returns: True if an entry was found to remove.

void  reregister_nexthop (A nexthop, uint32_t ref_cnt, bool resolvable, uint32_t metric)

reregister_nexthop

Reregister interest with the RIB about this next hop.

This method is used when the RIB tells us that all previous registrations have become invalid. This forces us to re-request information. We save the old state (resolvable, metric) just in case the following events occur:


 1) Register from next hop table.
 2) route_info_invalid from RIB.
 3) lookup from decision.

This ordering of events may not be possible just in case it is save the old result and return it in a lookup.

Parameters:

nexthopThe next hop that we are attempting to resolve.
ref_cntThe number of subnets using this nexthop.
resolvableWas the previous result resolvable.
metricIf the previous result was resolvable the metric.
bool  lookup (const A& nexthop, bool& resolvable, uint32_t& metric)

lookup

[const]

lookup next hop.

Parameters:

nexthopNext hop.
resolvableIs this route resolvable.
metricIf this route is resolvable the metric of this route.

Returns: True if this next hop is found.

void  deregister_from_rib (const A& nexthop, uint32_t prefix_len)

deregister_from_rib

void  deregister_interest (A nexthop, uint32_t prefix_len)

deregister_interest

void  deregister_interest_response (const XrlError& error, A addr, uint32_t prefix_len, string comment)

deregister_interest_response

XRL response method.

Parameters:

errorError returned by xrl call.
commentComment string used for diagnostic purposes.

Generated by: pavlin on kobe.xorp.net on Wed Jan 7 19:11:04 2009, using kdoc 2.0a54+XORP.