blob: 704cbc16a81c48564656ee3ce05a14407844c945 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau75bf2c92012-08-20 17:01:35 +02002 * include/proto/raw_sock.h
Willy Tarreauc63190d2012-05-11 14:23:52 +02003 * This file contains definition for raw stream socket operations
Willy Tarreaueb472682010-05-28 18:46:57 +02004 *
Willy Tarreaub277d6e2012-05-11 16:59:14 +02005 * Copyright (C) 2000-2012 Willy Tarreau - w@1wt.eu
Willy Tarreaueb472682010-05-28 18:46:57 +02006 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreau75bf2c92012-08-20 17:01:35 +020022#ifndef _PROTO_RAW_SOCK_H
23#define _PROTO_RAW_SOCK_H
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreaufa7e1022008-10-19 07:30:41 +020025#include <types/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026
Willy Tarreauf7bc57c2012-10-03 00:19:48 +020027extern struct xprt_ops raw_sock;
Willy Tarreaubaaee002006-06-26 02:48:02 +020028
Willy Tarreau75bf2c92012-08-20 17:01:35 +020029#endif /* _PROTO_RAW_SOCK_H */
Willy Tarreaubaaee002006-06-26 02:48:02 +020030
31/*
32 * Local variables:
33 * c-indent-level: 8
34 * c-basic-offset: 8
35 * End:
36 */