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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [libnetworking/] [lib/] [getprotoby.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 *  $Id: getprotoby.c,v 1.2 2001-09-27 12:01:52 chris Exp $
3
 */
4
 
5
#include <netdb.h>
6
#include <string.h>
7
#include <sys/types.h>
8
#include <sys/socket.h>
9
#include <netinet/in.h>
10
 
11
static const struct protoent prototab[] = {
12
                                        { "ip",    NULL, IPPROTO_IP },
13
                                        { "icmp",  NULL, IPPROTO_ICMP },
14
                                        { "tcp",   NULL, IPPROTO_TCP },
15
                                        { "udp",   NULL, IPPROTO_UDP },
16
                                        };
17
 
18
/*
19
 * Dummy version of BSD getprotobyname()
20
 */
21
struct protoent *
22
getprotobyname_static (const char *name)
23
{
24
        int i;
25
 
26
        for (i = 0 ; i < (sizeof prototab / sizeof prototab[0]) ; i++) {
27
                if (strcmp (name, prototab[i].p_name) == 0)
28
                        return (struct protoent *) &prototab[i];
29
        }
30
        return NULL;
31
}
32
 
33
/*
34
 * Dummy version of BSD getprotobynumber()
35
 */
36
struct protoent *
37
getprotobynumber_static (int proto)
38
{
39
        int i;
40
 
41
        for (i = 0 ; i < (sizeof prototab / sizeof prototab[0]) ; i++) {
42
                if (proto == prototab[i].p_proto)
43
                        return (struct protoent *) &prototab[i];
44
        }
45
        return NULL;
46
}

powered by: WebSVN 2.1.0

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