source: mainline/uspace/srv/net/tl/icmp/icmp.h@ a000878c

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a000878c was 91478aa, checked in by Lukas Mejdrech <lukasmejdrech@…>, 16 years ago
  • unify packet dimension interfaces
  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*
2 * Copyright (c) 2008 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 icmp
30 * @{
31 */
32
33/** @file
34 * ICMP module.
35 */
36
37#ifndef __NET_ICMP_H__
38#define __NET_ICMP_H__
39
40#include <fibril_synch.h>
41
42#include "../../include/icmp_codes.h"
43
44#include "../../structures/int_map.h"
45
46#include "icmp_header.h"
47
48/** Type definition of the ICMP reply data.
49 * @see icmp_reply
50 */
51typedef struct icmp_reply icmp_reply_t;
52
53/** Type definition of the ICMP reply data pointer.
54 * @see icmp_reply
55 */
56typedef icmp_reply_t * icmp_reply_ref;
57
58/** Type definition of the ICMP global data.
59 * @see icmp_globals
60 */
61typedef struct icmp_globals icmp_globals_t;
62
63/** Pending replies map.
64 * Maps message identifiers to the pending replies.
65 * Sending fibril waits for its associated reply event.
66 * Receiving fibril sets the associated reply with the return value and signals the event.
67 */
68INT_MAP_DECLARE( icmp_replies, icmp_reply_t );
69
70/** Echo specific data map.
71 * The bundle module gets an identifier of the assigned echo specific data while connecting.
72 * The identifier is used in the future semi-remote calls instead of the ICMP phone.
73 */
74INT_MAP_DECLARE( icmp_echo_data, icmp_echo_t );
75
76/** ICMP reply data.
77 */
78struct icmp_reply{
79 /** Reply result.
80 */
81 int result;
82 /** Safety lock.
83 */
84 fibril_mutex_t mutex;
85 /** Received or timeouted reply signaling.
86 */
87 fibril_condvar_t condvar;
88};
89
90/** ICMP global data.
91 */
92struct icmp_globals{
93 /** IP module phone.
94 */
95 int ip_phone;
96 /** Packet dimension.
97 */
98 packet_dimension_t packet_dimension;
99 /** Networking module phone.
100 */
101 int net_phone;
102 /** Indicates whether ICMP error reporting is enabled.
103 */
104 int error_reporting;
105 /** Indicates whether ICMP echo replying (ping) is enabled.
106 */
107 int echo_replying;
108 /** The last used identifier number.
109 */
110 icmp_param_t last_used_id;
111 /** The budled modules assigned echo specific data.
112 */
113 icmp_echo_data_t echo_data;
114 /** Echo timeout locks.
115 */
116 icmp_replies_t replies;
117 /** Safety lock.
118 */
119 fibril_rwlock_t lock;
120};
121
122#endif
123
124/** @}
125 */
126
Note: See TracBrowser for help on using the repository browser.