]> rtime.felk.cvut.cz Git - frescor/fwp.git/blob - fwp/lib/fwp/fwp_utils.h
Removed extraordinary use of inline keyword in functions declarations.
[frescor/fwp.git] / fwp / lib / fwp / fwp_utils.h
1 /**************************************************************************/
2 /* ---------------------------------------------------------------------- */
3 /* Copyright (C) 2006 - 2008 FRESCOR consortium partners:                 */
4 /*                                                                        */
5 /*   Universidad de Cantabria,              SPAIN                         */
6 /*   University of York,                    UK                            */
7 /*   Scuola Superiore Sant'Anna,            ITALY                         */
8 /*   Kaiserslautern University,             GERMANY                       */
9 /*   Univ. Politécnica  Valencia,           SPAIN                        */
10 /*   Czech Technical University in Prague,  CZECH REPUBLIC                */
11 /*   ENEA                                   SWEDEN                        */
12 /*   Thales Communication S.A.              FRANCE                        */
13 /*   Visual Tools S.A.                      SPAIN                         */
14 /*   Rapita Systems Ltd                     UK                            */
15 /*   Evidence                               ITALY                         */
16 /*                                                                        */
17 /*   See http://www.frescor.org for a link to partners' websites          */
18 /*                                                                        */
19 /*          FRESCOR project (FP6/2005/IST/5-034026) is funded             */
20 /*       in part by the European Union Sixth Framework Programme          */
21 /*       The European Union is not liable of any use that may be          */
22 /*       made of this code.                                               */
23 /*                                                                        */
24 /*                                                                        */
25 /*  This file is part of FWP (Frescor WLAN Protocol)                      */
26 /*                                                                        */
27 /* FWP is free software; you can redistribute it and/or modify it         */
28 /* under terms of the GNU General Public License as published by the      */
29 /* Free Software Foundation; either version 2, or (at your option) any    */
30 /* later version.  FWP is distributed in the hope that it will be         */
31 /* useful, but WITHOUT ANY WARRANTY; without even the implied warranty    */
32 /* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU    */
33 /* General Public License for more details. You should have received a    */
34 /* copy of the GNU General Public License along with FWP; see file        */
35 /* COPYING. If not, write to the Free Software Foundation, 675 Mass Ave,  */
36 /* Cambridge, MA 02139, USA.                                              */
37 /*                                                                        */
38 /* As a special exception, including FWP header files in a file,          */
39 /* instantiating FWP generics or templates, or linking other files        */
40 /* with FWP objects to produce an executable application, does not        */
41 /* by itself cause the resulting executable application to be covered     */
42 /* by the GNU General Public License. This exception does not             */
43 /* however invalidate any other reasons why the executable file might be  */
44 /* covered by the GNU Public License.                                     */
45 /**************************************************************************/
46 #ifndef _FWP_UTILS_H
47 #define _FWP_UTILS_H
48
49 #include <time.h>
50 #include <stdio.h>
51 #include <errno.h>
52 #include <unistd.h>
53 #include <stdlib.h>
54
55 #include <sys/socket.h>
56 #include <sys/un.h>
57 #include <netinet/in.h>
58 #include <arpa/inet.h>
59 #include <fwp_msgb.h>
60
61 #define Kbit 1000
62 #define Mbit (Kbit*Kbit)
63
64 #define SEC_TO_NSEC        1000000000LL
65 #define SEC_TO_USEC        1000000LL
66 #define MSEC_TO_USEC       1000LL
67 #define USEC_TO_NSEC       1000LL
68
69 /*extern const int prio_to_ac[8];
70 extern const unsigned int ac_to_tos[4];
71 extern const char *ac_to_text[4];
72 */
73
74 #define DEBUG
75
76 /* TODO: Introduce multilevel debugging massages and printf-like
77  * debugging function. */
78
79 #ifdef DEBUG
80 #define FWP_DEBUG(fmt,args...) printf("fwp: %s: " fmt, __func__ , ##args)
81 #define FWP_ERROR(fmt,args...) fprintf(stderr, "fwp: %s: " fmt, __func__ , ##args)
82
83 #else
84 #define FWP_DEBUG(fmt,args...)
85 #define FWP_ERROR(fmt,args...)
86 #endif
87
88 static inline ssize_t
89 _fwp_sendto(int s, const void *buf, size_t len, int flags,
90             const fwp_sockaddr_t *sockaddr)
91 {
92         ssize_t ret;
93         while ((ret = sendto(s, buf, len, flags, (struct sockaddr*)&sockaddr->addr, sockaddr->addrlen)) < 0) {
94                 if (errno != EINTR) break;
95         }
96         return ret;
97 }
98
99 static inline ssize_t
100 _fwp_recvfrom(int s, void *buf, size_t len, int flags,
101               fwp_sockaddr_t *sockaddr)
102 {
103         ssize_t ret;
104         while ((ret = recvfrom(s, buf, len, flags, (struct sockaddr*)&sockaddr->addr, 
105                 &sockaddr->addrlen)) < 0) {     
106                         if (errno != EINTR) break;
107         }
108         return ret;
109 }
110
111 static inline ssize_t
112 _fwp_send(int s, const void *buf, size_t len, int flags)
113 {
114         ssize_t ret;
115         while ((ret = send(s, buf, len, flags)) < 0) {
116                 if (errno != EINTR) break;
117         }
118         return ret;
119 }
120
121 static inline ssize_t
122 _fwp_recv(int s, void *buf, size_t len, int flags)
123 {
124         ssize_t ret;
125         while ((ret = recv(s, buf, len, flags)) < 0) {  
126                 if (errno != EINTR) break;
127         }
128         return ret;
129 }
130
131 void fwp_timespec_add (struct timespec *sum, const struct timespec *left, 
132                                 const struct timespec *right);
133 void fwp_timespec_sub (struct timespec *diff, const struct timespec *left,
134                                 const struct timespec *right);
135 void fwp_timespec_modulo(struct timespec *dividend, struct timespec *dividor,
136                                 struct timespec *remainder);
137
138 int fwp_set_rt_prio(int priority);
139 int fwp_create_unix_socket(char *path, struct sockaddr_un *addr);
140 int fwp_create_inet_socket(unsigned int port, struct sockaddr_in *addr);
141
142 #endif /* _FWP_UTILS_H */