OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [uClibc/] [libc/] [inet/] [ether_addr.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1325 phoenix
/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
2
   This file is part of the GNU C Library.
3
   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
4
 
5
   The GNU C Library is free software; you can redistribute it and/or
6
   modify it under the terms of the GNU Lesser General Public
7
   License as published by the Free Software Foundation; either
8
   version 2.1 of the License, or (at your option) any later version.
9
 
10
   The GNU C Library is distributed in the hope that it will be useful,
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
   Lesser General Public License for more details.
14
 
15
   You should have received a copy of the GNU Lesser General Public
16
   License along with the GNU C Library; if not, write to the Free
17
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18
   02111-1307 USA.
19
*/
20
 
21
/*
22
 *  2002-12-24  Nick Fedchik <nick@fedchik.org.ua>
23
 *      - initial uClibc port
24
 */
25
 
26
 
27
#define __FORCE_GLIBC
28
#include <features.h>
29
#include <ctype.h>
30
#include <stdio.h>
31
#include <stdlib.h>
32
#include <netinet/ether.h>
33
#include <netinet/if_ether.h>
34
 
35
struct ether_addr *ether_aton(const char *asc)
36
{
37
        static struct ether_addr result;
38
 
39
        return ether_aton_r(asc, &result);
40
}
41
 
42
struct ether_addr *ether_aton_r(const char *asc, struct ether_addr *addr)
43
{
44
        size_t cnt;
45
 
46
        for (cnt = 0; cnt < 6; ++cnt) {
47
                unsigned int number;
48
                char ch;
49
 
50
                ch = _tolower(*asc++);
51
                if ((ch < '0' || ch > '9') && (ch < 'a' || ch > 'f'))
52
                        return NULL;
53
                number = isdigit(ch) ? (ch - '0') : (ch - 'a' + 10);
54
 
55
                ch = _tolower(*asc);
56
                if ((cnt < 5 && ch != ':')
57
                        || (cnt == 5 && ch != '\0' && !isspace(ch))) {
58
                        ++asc;
59
                        if ((ch < '0' || ch > '9') && (ch < 'a' || ch > 'f'))
60
                                return NULL;
61
                        number <<= 4;
62
                        number += isdigit(ch) ? (ch - '0') : (ch - 'a' + 10);
63
 
64
                        ch = *asc;
65
                        if (cnt < 5 && ch != ':')
66
                                return NULL;
67
                }
68
 
69
                /* Store result.  */
70
                addr->ether_addr_octet[cnt] = (unsigned char) number;
71
 
72
                /* Skip ':'.  */
73
                ++asc;
74
        }
75
 
76
        return addr;
77
}
78
 
79
char *ether_ntoa(const struct ether_addr *addr)
80
{
81
        static char asc[18];
82
 
83
        return ether_ntoa_r(addr, asc);
84
}
85
 
86
char *ether_ntoa_r(const struct ether_addr *addr, char *buf)
87
{
88
        sprintf(buf, "%x:%x:%x:%x:%x:%x",
89
                        addr->ether_addr_octet[0], addr->ether_addr_octet[1],
90
                        addr->ether_addr_octet[2], addr->ether_addr_octet[3],
91
                        addr->ether_addr_octet[4], addr->ether_addr_octet[5]);
92
        return buf;
93
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.