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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [net/] [tcpip/] [v2_0/] [src/] [sys/] [net/] [raw_cb.c] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//      sys/net/raw_cb.c
4
//
5
//     
6
//
7
//==========================================================================
8
//####BSDCOPYRIGHTBEGIN####
9
//
10
// -------------------------------------------
11
//
12
// Portions of this software may have been derived from OpenBSD or other sources,
13
// and are covered by the appropriate copyright disclaimers included herein.
14
//
15
// -------------------------------------------
16
//
17
//####BSDCOPYRIGHTEND####
18
//==========================================================================
19
//#####DESCRIPTIONBEGIN####
20
//
21
// Author(s):    gthomas
22
// Contributors: gthomas
23
// Date:         2000-01-10
24
// Purpose:      
25
// Description:  
26
//              
27
//
28
//####DESCRIPTIONEND####
29
//
30
//==========================================================================
31
 
32
 
33
/*      $OpenBSD: raw_cb.c,v 1.2 1996/03/03 21:07:16 niklas Exp $       */
34
/*      $NetBSD: raw_cb.c,v 1.9 1996/02/13 22:00:39 christos Exp $      */
35
 
36
/*
37
 * Copyright (c) 1980, 1986, 1993
38
 *      The Regents of the University of California.  All rights reserved.
39
 *
40
 * Redistribution and use in source and binary forms, with or without
41
 * modification, are permitted provided that the following conditions
42
 * are met:
43
 * 1. Redistributions of source code must retain the above copyright
44
 *    notice, this list of conditions and the following disclaimer.
45
 * 2. Redistributions in binary form must reproduce the above copyright
46
 *    notice, this list of conditions and the following disclaimer in the
47
 *    documentation and/or other materials provided with the distribution.
48
 * 3. All advertising materials mentioning features or use of this software
49
 *    must display the following acknowledgement:
50
 *      This product includes software developed by the University of
51
 *      California, Berkeley and its contributors.
52
 * 4. Neither the name of the University nor the names of its contributors
53
 *    may be used to endorse or promote products derived from this software
54
 *    without specific prior written permission.
55
 *
56
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
57
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
58
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
59
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
60
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
61
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
62
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
63
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
64
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
65
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66
 * SUCH DAMAGE.
67
 *
68
 *      @(#)raw_cb.c    8.1 (Berkeley) 6/10/93
69
 */
70
 
71
#include <sys/param.h>
72
#ifndef __ECOS
73
#include <sys/systm.h>
74
#endif
75
#include <sys/mbuf.h>
76
#include <sys/socket.h>
77
#include <sys/socketvar.h>
78
#include <sys/domain.h>
79
#include <sys/protosw.h>
80
#include <sys/errno.h>
81
 
82
#include <net/if.h>
83
#include <net/route.h>
84
#include <net/raw_cb.h>
85
#include <netinet/in.h>
86
 
87
/*
88
 * Routines to manage the raw protocol control blocks.
89
 *
90
 * TODO:
91
 *      hash lookups by protocol family/protocol + address family
92
 *      take care of unique address problems per AF?
93
 *      redo address binding to allow wildcards
94
 */
95
 
96
u_long  raw_sendspace = RAWSNDQ;
97
u_long  raw_recvspace = RAWRCVQ;
98
 
99
/*
100
 * Allocate a control block and a nominal amount
101
 * of buffer space for the socket.
102
 */
103
int
104
raw_attach(so, proto)
105
        register struct socket *so;
106
        int proto;
107
{
108
        register struct rawcb *rp = sotorawcb(so);
109
        int error;
110
 
111
        /*
112
         * It is assumed that raw_attach is called
113
         * after space has been allocated for the
114
         * rawcb.
115
         */
116
        if (rp == 0)
117
                return (ENOBUFS);
118
        if ((error = soreserve(so, raw_sendspace, raw_recvspace)) != 0)
119
                return (error);
120
        rp->rcb_socket = so;
121
        rp->rcb_proto.sp_family = so->so_proto->pr_domain->dom_family;
122
        rp->rcb_proto.sp_protocol = proto;
123
        LIST_INSERT_HEAD(&rawcb, rp, rcb_list);
124
        return (0);
125
}
126
 
127
/*
128
 * Detach the raw connection block and discard
129
 * socket resources.
130
 */
131
void
132
raw_detach(rp)
133
        register struct rawcb *rp;
134
{
135
        struct socket *so = rp->rcb_socket;
136
 
137
        so->so_pcb = 0;
138
        sofree(so);
139
        LIST_REMOVE(rp, rcb_list);
140
#ifdef notdef
141
        if (rp->rcb_laddr)
142
                m_freem(dtom(rp->rcb_laddr));
143
        rp->rcb_laddr = 0;
144
#endif
145
        free((caddr_t)(rp), M_PCB);
146
}
147
 
148
/*
149
 * Disconnect and possibly release resources.
150
 */
151
void
152
raw_disconnect(rp)
153
        struct rawcb *rp;
154
{
155
 
156
#ifdef notdef
157
        if (rp->rcb_faddr)
158
                m_freem(dtom(rp->rcb_faddr));
159
        rp->rcb_faddr = 0;
160
#endif
161
        if (rp->rcb_socket->so_state & SS_NOFDREF)
162
                raw_detach(rp);
163
}
164
 
165
#ifdef notdef
166
int
167
raw_bind(so, nam)
168
        register struct socket *so;
169
        struct mbuf *nam;
170
{
171
        struct sockaddr *addr = mtod(nam, struct sockaddr *);
172
        register struct rawcb *rp;
173
 
174
        if (ifnet == 0)
175
                return (EADDRNOTAVAIL);
176
        rp = sotorawcb(so);
177
        nam = m_copym(nam, 0, M_COPYALL, M_WAITOK);
178
        rp->rcb_laddr = mtod(nam, struct sockaddr *);
179
        return (0);
180
}
181
#endif

powered by: WebSVN 2.1.0

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