diff options
author | Christian Grothoff <christian@grothoff.org> | 2011-05-07 07:21:36 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2011-05-07 07:21:36 +0000 |
commit | 87617678ba742a1daf222858117e53252e3f0f11 (patch) | |
tree | 155dcc1df9a11df6d13abb2b6f79a8cd44f1afd0 /src/transport/gnunet-service-transport.c | |
parent | 6ed107622e537d73eb5462feedc7700dfeba5b5b (diff) |
indent, dce
Diffstat (limited to 'src/transport/gnunet-service-transport.c')
-rw-r--r-- | src/transport/gnunet-service-transport.c | 80 |
1 files changed, 37 insertions, 43 deletions
diff --git a/src/transport/gnunet-service-transport.c b/src/transport/gnunet-service-transport.c index f01c64bb4..9691f55eb 100644 --- a/src/transport/gnunet-service-transport.c +++ b/src/transport/gnunet-service-transport.c @@ -2792,50 +2792,44 @@ add_peer_address (struct NeighbourList *neighbour, } ret->ressources = GNUNET_malloc(available_ressources * sizeof (struct ATS_ressource_entry)); - int plugin; for (c=0; c<available_ressources; c++) - { - struct ATS_ressource_entry *r = ret->ressources; - r[c].index = c; - r[c].atis_index = ressources[c].atis_index; - if (0 == strcmp(neighbour->plugins->plugin->short_name,"unix")) - { - r[c].c = ressources[c].c_unix; - plugin = 1; - } - else if (0 == strcmp(neighbour->plugins->plugin->short_name,"udp")) - { - r[c].c = ressources[c].c_udp; - plugin = 2; - } - else if (0 == strcmp(neighbour->plugins->plugin->short_name,"tcp")) - { - r[c].c = ressources[c].c_tcp; - plugin = 3; - } - else if (0 == strcmp(neighbour->plugins->plugin->short_name,"http")) - { - r[c].c = ressources[c].c_http; - plugin = 4; - } - else if (0 == strcmp(neighbour->plugins->plugin->short_name,"https")) - { - r[c].c = ressources[c].c_https; - plugin = 5; - } - else if (0 == strcmp(neighbour->plugins->plugin->short_name,"wlan")) - { - r[c].c = ressources[c].c_wlan; - plugin = 6; - } - else - { - plugin = -1; - r[c].c = ressources[c].c_default; - GNUNET_log (GNUNET_ERROR_TYPE_ERROR,"Assigning default cost to peer `%s' addr plugin `%s'! This should not happen!", - GNUNET_i2s(&neighbour->peer), neighbour->plugins->plugin->short_name); - } - } + { + struct ATS_ressource_entry *r = ret->ressources; + r[c].index = c; + r[c].atis_index = ressources[c].atis_index; + if (0 == strcmp(neighbour->plugins->plugin->short_name,"unix")) + { + r[c].c = ressources[c].c_unix; + } + else if (0 == strcmp(neighbour->plugins->plugin->short_name,"udp")) + { + r[c].c = ressources[c].c_udp; + } + else if (0 == strcmp(neighbour->plugins->plugin->short_name,"tcp")) + { + r[c].c = ressources[c].c_tcp; + } + else if (0 == strcmp(neighbour->plugins->plugin->short_name,"http")) + { + r[c].c = ressources[c].c_http; + } + else if (0 == strcmp(neighbour->plugins->plugin->short_name,"https")) + { + r[c].c = ressources[c].c_https; + } + else if (0 == strcmp(neighbour->plugins->plugin->short_name,"wlan")) + { + r[c].c = ressources[c].c_wlan; + } + else + { + r[c].c = ressources[c].c_default; + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Assigning default cost to peer `%s' addr plugin `%s'! This should not happen!\n", + GNUNET_i2s(&neighbour->peer), + neighbour->plugins->plugin->short_name); + } + } ret->quality = GNUNET_malloc (available_quality_metrics * sizeof (struct ATS_quality_entry)); ret->addrlen = addrlen; |