summaryrefslogtreecommitdiffstats
path: root/include/haproxy/dgram-t.h
blob: 4e4c2afef51249d117064f7af7ae247be9316e1a (plain)
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
/*
 * include/haproxy/dgram-t.h
 * This file provides structures and types for datagram processing
 *
 * Copyright (C) 2014 Baptiste Assmann <bedis9@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation, version 2.1
 * exclusively.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef _HAPROXY_HAPROXY_DGRAM_T_H
#define _HAPROXY_HAPROXY_DGRAM_T_H

#include <arpa/inet.h>

/*
 * datagram related structure
 */
struct dgram_conn {
	__decl_thread(HA_SPINLOCK_T lock);
	const struct dgram_data_cb *data;	/* data layer callbacks. Must be set before */
	void *owner;				/* pointer to upper layer's entity */
	union {					/* definitions which depend on connection type */
		struct {			/*** information used by socket-based dgram ***/
			int fd;			/* file descriptor */
		} sock;
	} t;
	struct {
		struct sockaddr_storage from;	/* client address, or address to spoof when connecting to the server */
		struct sockaddr_storage to;	/* address reached by the client, or address to connect to */
	} addr;					/* addresses of the remote side, client for producer and server for consumer */
};

/*
 * datagram callback structure
 */
struct dgram_data_cb {
	void (*recv)(struct dgram_conn *dgram); /* recv callback */
	void (*send)(struct dgram_conn *dgram); /* send callback */
};

#endif /* _HAPROXY_HAPROXY_DGRAM_T_H */