Blame raw.h

Packit Service d8d8ac
/**
Packit Service d8d8ac
 * @file raw.h
Packit Service d8d8ac
 * @brief Implements transport over IEEE 802.3 aka raw Ethernet.
Packit Service d8d8ac
 * @note Copyright (C) 2012 Richard Cochran <richardcochran@gmail.com>
Packit Service d8d8ac
 *
Packit Service d8d8ac
 * This program is free software; you can redistribute it and/or modify
Packit Service d8d8ac
 * it under the terms of the GNU General Public License as published by
Packit Service d8d8ac
 * the Free Software Foundation; either version 2 of the License, or
Packit Service d8d8ac
 * (at your option) any later version.
Packit Service d8d8ac
 *
Packit Service d8d8ac
 * This program is distributed in the hope that it will be useful,
Packit Service d8d8ac
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service d8d8ac
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service d8d8ac
 * GNU General Public License for more details.
Packit Service d8d8ac
 *
Packit Service d8d8ac
 * You should have received a copy of the GNU General Public License along
Packit Service d8d8ac
 * with this program; if not, write to the Free Software Foundation, Inc.,
Packit Service d8d8ac
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Packit Service d8d8ac
 */
Packit Service d8d8ac
#ifndef HAVE_RAW_H
Packit Service d8d8ac
#define HAVE_RAW_H
Packit Service d8d8ac
Packit Service d8d8ac
#include "fd.h"
Packit Service d8d8ac
#include "transport.h"
Packit Service d8d8ac
Packit Service d8d8ac
/**
Packit Service d8d8ac
 * Allocate an instance of a raw Ethernet transport.
Packit Service d8d8ac
 * @return Pointer to a new transport instance on success, NULL otherwise.
Packit Service d8d8ac
 */
Packit Service d8d8ac
struct transport *raw_transport_create(void);
Packit Service d8d8ac
Packit Service d8d8ac
#endif