/usr/include/faifa/faifa.h is in libfaifa-dev 0.2~svn82-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | /*
* Faifa library public interface
*
* Copyright (C) 2007-2008 Xavier Carcelle <xavier.carcelle@gmail.com>
* Florian Fainelli <florian@openwrt.org>
* Nicolas Thill <nico@openwrt.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*/
#ifndef __FAIFA_H__
#define __FAIFA_H__
#include <sys/types.h>
#define FAIFA_VERSION_MAJOR 0
#define FAIFA_VERSION_MINOR 1
#define faifa_printf(stream, fmt,args...) \
fprintf (stream, fmt ,##args) \
#ifdef __cplusplus
extern "C" {
#endif
/**
* faifa_t - private handle
*/
typedef struct faifa faifa_t;
/**
* faifa_init - init library
* @return
* private handle on success, NULL on error
*/
extern faifa_t *faifa_init(void);
/**
* faifa_free - free library
* @faifa: private handle
*/
extern void faifa_free(faifa_t *faifa);
/**
* faifa_error - return a text message related to the last error
* @faifa: private handle
* @return
* error message string
*/
extern char *faifa_error(faifa_t *faifa);
/**
* faifa_open - open specified network device
* @faifa: private handle
* @name: network device name
* @return
* 0 on success, -1 on error
*/
extern int faifa_open(faifa_t *faifa, char *name);
/**
* faifa_close - close network device
* @faifa: private handle
* @return
* 0 on success, -1 on error
*/
extern int faifa_close(faifa_t *faifa);
/**
* faifa_send - send raw ethernet frame
* @faifa: private handle
* @buf: data buffer
* @len: data buffer length
* @return
* number of bytes sent on success, -1 on error
*/
extern int faifa_send(faifa_t *faifa, void *buf, int len);
/**
* faifa_recv - receive raw ethernet frame
* @faifa: private handle
* @buf: data buffer
* @len: data buffer length
* @return
* number of bytes received on success, -1 on error
*/
extern int faifa_recv(faifa_t *faifa, void *buf, int len);
/**
* faifa_loop_handler_t - packet dispatch handler
*/
typedef void (*faifa_loop_handler_t)(faifa_t *faifa, void *buf, int len, void *user);
/**
* faifa_loop - receive and dispatch frames in a loop
* @faifa: private handle
* @handler: frame dispatch handler
* @user: user value passed to the dispatch handler
* @return
* 0 on success, -1 on error
*/
extern int faifa_loop(faifa_t *faifa, faifa_loop_handler_t handler, void *user);
extern int faifa_sprint_hex(char *str, void *buf, int len, char *sep);
/**
* faifa_parse_mac_addr - parses a MAC address
* @faifa: private handle
* @mac: mac address as a string
* @addr: mac address as a 6-bytes buffer
* @return
* 0 on success, -1 on error
*/
extern int faifa_parse_mac_addr(faifa_t *faifa, const char *mac, u_int8_t *addr);
/**
* faifa_set_dst_addr - sets the destination MAC address
* @faifa: private handle
* @mac: destination MAC address
*
*/
extern void faifa_set_dst_addr(faifa_t *faifa, const u_int8_t *addr);
/**
* faifa_set_verbose - set the faifa verbosity
* @faifa: private handle
* @verbose: verbosity level
*/
extern void faifa_set_verbose(faifa_t *faifa, int verbose);
static inline int faifa_is_zero_ether_addr(const u_int8_t *addr)
{
return !(addr[0] | addr[1] | addr[2] | addr[3] | addr[4] | addr[5]);
}
#ifdef __cplusplus
}
#endif
#endif /* __FAIFA_H__ */
|