aboutsummaryrefslogtreecommitdiffstats
path: root/test/packetdrill/wire_client.h
blob: 5b3b653c9afd9862f98d6038d6088f8afa20ade7 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 * Copyright 2013 Google Inc.
 *
 * 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.
 */
/*
 * Author: ncardwell@google.com (Neal Cardwell)
 *
 * Client-side code for remote on-the-wire testing using a real NIC.
 */

#ifndef __WIRE_CLIENT_H__
#define __WIRE_CLIENT_H__

#include "types.h"

#include "ethernet.h"
#include "script.h"
#include "wire_protocol.h"
#include "wire_conn.h"

struct config;
struct state;

/* Internal private state for the wire client. */
struct wire_client {
	struct wire_conn *wire_conn;		/* connection to wire server */

	struct ether_addr client_ether_addr;	/* wire client hardware addr */

	enum event_t last_event_type;	/* type of previous event */
	int num_events;				/* events executed so far */
};

/* Allocate a new wire_client. */
struct wire_client *wire_client_new(void);

/* Initiate remote on-the-wire testing using a real NIC. */
extern int wire_client_init(struct wire_client *wire_client,
			    const struct config *config,
			    const struct script *script);

/* Delete a wire_client and its associated objects. */
extern void wire_client_free(struct wire_client *wire_client);

/* Send a message that the client is starting now. */
extern void wire_client_send_client_starting(struct wire_client *wire_client);

/* Tell the client state machine that the script interpreter has moved
 * on to the next event, and is about to wait for and execute the
 * given event.
 */
extern void wire_client_next_event(struct wire_client *wire_client,
				   struct event *event);

#endif /* __WIRE_CLIENT_H__ */