Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/netif/netif_local.c

    r46d4d9f r0ab68f6  
    9292 */
    9393int netif_send_msg_local(int netif_phone, device_id_t device_id,
    94     packet_t *packet, services_t sender)
     94    packet_t packet, services_t sender)
    9595{
    9696        fibril_rwlock_write_lock(&netif_globals.lock);
     
    181181 */
    182182int netif_stats_req_local(int netif_phone, device_id_t device_id,
    183     device_stats_t *stats)
     183    device_stats_ref stats)
    184184{
    185185        fibril_rwlock_read_lock(&netif_globals.lock);
     
    203203 */
    204204int netif_get_addr_req_local(int netif_phone, device_id_t device_id,
    205     measured_string_t **address, char **data)
     205    measured_string_ref *address, char **data)
    206206{
    207207        int rc;
     
    253253 * @param[in] stats     The usage statistics.
    254254 */
    255 void null_device_stats(device_stats_t *stats)
     255void null_device_stats(device_stats_ref stats)
    256256{
    257257        bzero(stats, sizeof(device_stats_t));
     
    307307 *
    308308 */
    309 packet_t *netif_packet_get_1(size_t content)
     309packet_t netif_packet_get_1(size_t content)
    310310{
    311311        return packet_get_1_remote(netif_globals.net_phone, content);
     
    361361        size_t length;
    362362        device_stats_t stats;
    363         packet_t *packet;
     363        packet_t packet;
    364364        measured_string_t address;
    365365        int rc;
Note: See TracChangeset for help on using the changeset viewer.