Changeset e52b4b5 in mainline for uspace/lib/c/generic/net/inet.c


Ignore:
Timestamp:
2013-06-28T15:27:11Z (12 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b5cf742a
Parents:
4339f09
Message:

add in6addr_any

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/net/inet.c

    r4339f09 re52b4b5  
    11/*
    2  * Copyright (c) 2009 Lukas Mejdrech
     2 * Copyright (c) 2013 Martin Decky
    33 * All rights reserved.
    44 *
     
    4444#include <stdio.h>
    4545#include <str.h>
     46
     47const in6_addr_t in6addr_any = {
     48        { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
     49};
    4650
    4751static int inet_ntop4(const uint8_t *data, char *address, size_t length)
Note: See TracChangeset for help on using the changeset viewer.