Subversion Repositories HelenOS

Rev

Rev 2883 | Rev 3435 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2883 Rev 2894
-
 
1
/*
-
 
2
 * Copyright (c) 2008 Jiri Svoboda
-
 
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
 
1
/** @addtogroup sctrace
29
/** @addtogroup sctrace
2
 * @{
30
 * @{
3
 */
31
 */
4
/** @file
32
/** @file
5
 */
33
 */
6
 
34
 
7
#ifndef PROTO_H_
35
#ifndef PROTO_H_
8
#define PROTO_H_
36
#define PROTO_H_
9
 
37
 
10
#include <libadt/hash_table.h>
38
#include <libadt/hash_table.h>
11
 
39
 
12
typedef struct {
40
typedef struct {
13
    char *name;
41
    char *name;
14
} oper_t;
42
} oper_t;
15
 
43
 
16
typedef struct {
44
typedef struct {
17
    /** Protocol name */
45
    /** Protocol name */
18
    char *name;
46
    char *name;
19
 
47
 
20
    /** Maps method number to operation */
48
    /** Maps method number to operation */
21
    hash_table_t method_oper;
49
    hash_table_t method_oper;
22
} proto_t;
50
} proto_t;
23
 
51
 
24
/* Maps service number to protocol */
52
/* Maps service number to protocol */
25
extern hash_table_t srv_proto;
53
extern hash_table_t srv_proto;
26
 
54
 
27
void proto_init(void);
55
void proto_init(void);
28
void proto_cleanup(void);
56
void proto_cleanup(void);
29
 
57
 
30
void proto_register(int srv, proto_t *proto);
58
void proto_register(int srv, proto_t *proto);
31
proto_t *proto_get_by_srv(int srv);
59
proto_t *proto_get_by_srv(int srv);
32
proto_t *proto_new(char *name);
60
proto_t *proto_new(char *name);
33
void proto_add_oper(proto_t *proto, int method, oper_t *oper);
61
void proto_add_oper(proto_t *proto, int method, oper_t *oper);
34
oper_t *proto_get_oper(proto_t *proto, int method);
62
oper_t *proto_get_oper(proto_t *proto, int method);
35
 
63
 
36
oper_t *oper_new(char *name);
64
oper_t *oper_new(char *name);
37
 
65
 
38
 
66
 
39
#endif
67
#endif
40
 
68
 
41
/** @}
69
/** @}
42
 */
70
 */
43
 
71