Changeset b4edc96 in mainline for uspace/lib/inet/src/inetcfg.c


Ignore:
Timestamp:
2021-08-08T09:20:20Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3e6bca8
Parents:
d5ed54b
Message:

Rename and move addr48_t to eth_addr_t

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/inet/src/inetcfg.c

    rd5ed54b rb4edc96  
    11/*
    2  * Copyright (c) 2012 Jiri Svoboda
     2 * Copyright (c) 2021 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    3030#include <assert.h>
    3131#include <errno.h>
     32#include <inet/eth_addr.h>
    3233#include <inet/inetcfg.h>
    3334#include <ipc/inet.h>
     
    292293        aid_t req = async_send_1(exch, INETCFG_LINK_GET, link_id, &answer);
    293294        aid_t dreq = async_data_read(exch, name_buf, LOC_NAME_MAXLEN, &dreply);
    294         errno_t rc = async_data_read_start(exch, &linfo->mac_addr, sizeof(addr48_t));
     295        errno_t rc = async_data_read_start(exch, &linfo->mac_addr, sizeof(eth_addr_t));
    295296        async_wait_for(dreq, &dretval);
    296297
Note: See TracChangeset for help on using the changeset viewer.