Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/inetsrv/sroute.c

    rf023251 r02a09ed  
    8989}
    9090
    91 /** Find static route object matching address @a addr.
     91/** Find address object matching address @a addr.
    9292 *
    9393 * @param addr  Address
     
    9595inet_sroute_t *inet_sroute_find(inet_addr_t *addr)
    9696{
    97         ip_ver_t addr_ver = inet_addr_get(addr, NULL, NULL);
     97        uint16_t addr_af = inet_addr_get(addr, NULL, NULL);
    9898       
    9999        inet_sroute_t *best = NULL;
     
    102102        fibril_mutex_lock(&sroute_list_lock);
    103103       
    104         list_foreach(sroute_list, sroute_list, inet_sroute_t, sroute) {
     104        list_foreach(sroute_list, link) {
     105                inet_sroute_t *sroute = list_get_instance(link,
     106                    inet_sroute_t, sroute_list);
     107               
    105108                uint8_t dest_bits;
    106                 ip_ver_t dest_ver = inet_naddr_get(&sroute->dest, NULL, NULL,
     109                uint16_t dest_af = inet_naddr_get(&sroute->dest, NULL, NULL,
    107110                    &dest_bits);
    108111               
    109112                /* Skip comparison with different address family */
    110                 if (addr_ver != dest_ver)
     113                if (addr_af != dest_af)
    111114                        continue;
    112115               
     
    144147        fibril_mutex_lock(&sroute_list_lock);
    145148
    146         list_foreach(sroute_list, sroute_list, inet_sroute_t, sroute) {
     149        list_foreach(sroute_list, link) {
     150                inet_sroute_t *sroute = list_get_instance(link,
     151                    inet_sroute_t, sroute_list);
     152
    147153                if (str_cmp(sroute->name, name) == 0) {
    148154                        fibril_mutex_unlock(&sroute_list_lock);
     
    170176        fibril_mutex_lock(&sroute_list_lock);
    171177
    172         list_foreach(sroute_list, sroute_list, inet_sroute_t, sroute) {
     178        list_foreach(sroute_list, link) {
     179                inet_sroute_t *sroute = list_get_instance(link,
     180                    inet_sroute_t, sroute_list);
     181
    173182                if (sroute->id == id) {
    174183                        fibril_mutex_unlock(&sroute_list_lock);
     
    198207
    199208        i = 0;
    200         list_foreach(sroute_list, sroute_list, inet_sroute_t, sroute) {
     209        list_foreach(sroute_list, link) {
     210                inet_sroute_t *sroute = list_get_instance(link,
     211                    inet_sroute_t, sroute_list);
     212
    201213                id_list[i++] = sroute->id;
    202214        }
Note: See TracChangeset for help on using the changeset viewer.