update for HEAD-2003091401
[reactos.git] / drivers / net / packet / functions.c
1 /*
2  * Copyright (c) 2001
3  *      Politecnico di Torino.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that: (1) source code distributions
7  * retain the above copyright notice and this paragraph in its entirety, (2)
8  * distributions including binary code include the above copyright notice and
9  * this paragraph in its entirety in the documentation or other materials
10  * provided with the distribution, and (3) all advertising materials mentioning
11  * features or use of this software display the following acknowledgement:
12  * ``This product includes software developed by the Politecnico
13  * di Torino, and its contributors.'' Neither the name of
14  * the University nor the names of its contributors may be used to endorse
15  * or promote products derived from this software without specific prior
16  * written permission.
17  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20  */
21
22 #ifdef WIN32
23 #include "tme.h"
24 #include "functions.h"
25 #endif
26
27 #ifdef __FreeBSD__
28
29 #ifdef _KERNEL
30 #include <net/tme/tme.h>
31 #include <net/bpf.h>
32 #include <net/tme/functions.h>
33 #else
34 #include <tme/tme.h>
35 #include <bpf.h>
36 #include <tme/functions.h>
37 #endif
38
39 #endif
40
41
42
43 lut_fcn lut_fcn_mapper(uint32 index)
44 {
45
46         switch (index)
47         {
48         case NORMAL_LUT_W_INSERT:
49                 return (lut_fcn) normal_lut_w_insert;
50
51         case NORMAL_LUT_WO_INSERT:
52                 return (lut_fcn) normal_lut_wo_insert;
53
54         case BUCKET_LOOKUP:
55                 return (lut_fcn) bucket_lookup;
56
57         case BUCKET_LOOKUP_INSERT:
58                 return (lut_fcn) bucket_lookup_insert;
59         
60         default:
61                 return NULL;
62         }
63         
64         return NULL;
65
66 }
67
68 exec_fcn exec_fcn_mapper(uint32 index)
69 {
70         switch (index)
71         {
72         case COUNT_PACKETS:
73                 return (exec_fcn) count_packets;
74         
75         case TCP_SESSION:
76                 return (exec_fcn) tcp_session;
77         default:
78                 return NULL;
79         }
80         
81         return NULL;
82 }
83