source: mainline/uspace/srv/net/il/arp/arp.h@ a64c64d

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a64c64d was a64c64d, checked in by Lukas Mejdrech <lukasmejdrech@…>, 15 years ago
  • code reorganization (no functional change)
  • Property mode set to 100644
File size: 4.1 KB
Line 
1/*
2 * Copyright (c) 2009 Lukas Mejdrech
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup arp
30 * @{
31 */
32
33/** @file
34 * ARP module.
35 */
36
37#ifndef __NET_ARP_H__
38#define __NET_ARP_H__
39
40#include <fibril_synch.h>
41
42#include <ipc/ipc.h>
43#include <ipc/services.h>
44
45#include "../../include/device.h"
46#include "../../include/hardware.h"
47
48#include "../../structures/generic_char_map.h"
49#include "../../structures/int_map.h"
50#include "../../structures/measured_strings.h"
51
52
53/** Type definition of the ARP device specific data.
54 * @see arp_device
55 */
56typedef struct arp_device arp_device_t;
57
58/** Type definition of the ARP device specific data pointer.
59 * @see arp_device
60 */
61typedef arp_device_t * arp_device_ref;
62
63/** Type definition of the ARP global data.
64 * @see arp_globals
65 */
66typedef struct arp_globals arp_globals_t;
67
68/** Type definition of the ARP protocol specific data.
69 * @see arp_proto
70 */
71typedef struct arp_proto arp_proto_t;
72
73/** Type definition of the ARP protocol specific data pointer.
74 * @see arp_proto
75 */
76typedef arp_proto_t * arp_proto_ref;
77
78/** ARP address map.
79 * Translates addresses.
80 * @see generic_char_map.h
81 */
82GENERIC_CHAR_MAP_DECLARE(arp_addr, measured_string_t)
83
84/** ARP address cache.
85 * Maps devices to the ARP device specific data.
86 * @see device.h
87 */
88DEVICE_MAP_DECLARE(arp_cache, arp_device_t)
89
90/** ARP protocol map.
91 * Maps protocol identifiers to the ARP protocol specific data.
92 * @see int_map.h
93 */
94INT_MAP_DECLARE(arp_protos, arp_proto_t)
95
96/** ARP device specific data.
97 */
98struct arp_device{
99 /** Actual device hardware address.
100 */
101 measured_string_ref addr;
102 /** Actual device hardware address data.
103 */
104 char * addr_data;
105 /** Broadcast device hardware address.
106 */
107 measured_string_ref broadcast_addr;
108 /** Broadcast device hardware address data.
109 */
110 char * broadcast_data;
111 /** Device identifier.
112 */
113 device_id_t device_id;
114 /** Hardware type.
115 */
116 hw_type_t hardware;
117 /** Packet dimension.
118 */
119 packet_dimension_t packet_dimension;
120 /** Device module phone.
121 */
122 int phone;
123 /** Protocol map.
124 * Address map for each protocol.
125 */
126 arp_protos_t protos;
127 /** Device module service.
128 */
129 services_t service;
130};
131
132/** ARP global data.
133 */
134struct arp_globals{
135 /** ARP address cache.
136 */
137 arp_cache_t cache;
138 /** The client connection processing function.
139 * The module skeleton propagates its own one.
140 */
141 async_client_conn_t client_connection;
142 /** Networking module phone.
143 */
144 int net_phone;
145 /** Safety lock.
146 */
147 fibril_rwlock_t lock;
148};
149
150/** ARP protocol specific data.
151 */
152struct arp_proto{
153 /** Actual device protocol address.
154 */
155 measured_string_ref addr;
156 /** Actual device protocol address data.
157 */
158 char * addr_data;
159 /** Address map.
160 */
161 arp_addr_t addresses;
162 /** Protocol service.
163 */
164 services_t service;
165};
166
167#endif
168
169/** @}
170 */
Note: See TracBrowser for help on using the repository browser.