From dc99dd27fb2d4a76cccd32b4154a866788bc68a6 Mon Sep 17 00:00:00 2001 From: gardners Date: Tue, 13 Sep 2011 02:54:03 +0930 Subject: [PATCH] Removed unneeded interface field from node_observation structure. --- mphlr.h | 2 +- overlay_route.c | 40 +++++++++++++++++++++------------------- 2 files changed, 22 insertions(+), 20 deletions(-) diff --git a/mphlr.h b/mphlr.h index 8ff4dfcc..ff04e1f8 100644 --- a/mphlr.h +++ b/mphlr.h @@ -732,7 +732,7 @@ typedef struct overlay_node_observation { unsigned char observed_score; /* serves as validty check also */ unsigned char corrected_score; unsigned char gateways_en_route; - unsigned char interface; + unsigned char RESERVED; /* for alignment */ long long rx_time; unsigned char sender_prefix[OVERLAY_SENDER_PREFIX_LENGTH]; } overlay_node_observation; diff --git a/overlay_route.c b/overlay_route.c index bd365aad..27e20ae7 100644 --- a/overlay_route.c +++ b/overlay_route.c @@ -649,7 +649,9 @@ int overlay_route_saw_selfannounce(int interface,overlay_frame *f,long long now) return 0; } -int overlay_someoneelse_can_hear(unsigned char *hearer,unsigned char *who,unsigned int who_score,unsigned int who_gates,long long now) +int overlay_someoneelse_can_hear(unsigned char *hearer,unsigned char *who, + unsigned int who_score,unsigned int who_gates, + unsigned char interface,long long now) { /* Lookup node in node cache */ overlay_node *n=overlay_route_find_node(who,1 /* create if necessary */); @@ -679,7 +681,19 @@ int overlay_someoneelse_can_hear(unsigned char *hearer,unsigned char *who,unsign int overlay_route_recalc_node_metrics(overlay_node *n,long long now) { - return WHY("Not implemented."); + int o; + + for(o=0;oobservations[o].observed_score) + { + int discounted_score=n->observations[o].observed_score; + discounted_score-=(now-n->observations[o].rx_time)/1000; + if (discounted_score<0) discounted_score=0; + n->observations[o].corrected_score=discounted_score; + } + } + return 0; } /* Recalculate node reachability metric, but only for directly connected nodes, @@ -852,8 +866,7 @@ int overlay_route_record_link(long long now,unsigned char *to,unsigned char *via if ((slot==-1)&&(!n->observations[i].observed_score)) slot=i; /* If the intermediate hosts ("via"s) and interface numbers match, then overwrite old observation with new one */ - if (n->observations[i].interface==interface&& - (!memcmp(via,n->observations[i].sender_prefix,OVERLAY_SENDER_PREFIX_LENGTH))) + if (!memcmp(via,n->observations[i].sender_prefix,OVERLAY_SENDER_PREFIX_LENGTH)) { /* Bingo - update this one */ slot=i; @@ -924,9 +937,9 @@ int overlay_route_dump() { overlay_node_observation *ob=&overlay_nodes[bin][slot].observations[o]; if (ob->corrected_score) - fprintf(stderr," %d/%d via %s*:%d", + fprintf(stderr," %d/%d via %s*", ob->corrected_score,ob->gateways_en_route, - overlay_render_sid_prefix(ob->sender_prefix,7),ob->interface); + overlay_render_sid_prefix(ob->sender_prefix,7)); } } fprintf(stderr,"\n"); @@ -1037,17 +1050,6 @@ int overlay_route_tick_neighbour(int neighbour_id,long long now) */ int overlay_route_tick_node(int bin,int slot,long long now) { - int o; - - for(o=0;o