]> git.proxmox.com Git - mirror_ovs.git/blame - ovsdb/jsonrpc-server.h
flow: Enable retrieval of TCP flags from IPv6 traffic.
[mirror_ovs.git] / ovsdb / jsonrpc-server.h
CommitLineData
87fcbc60 1/* Copyright (c) 2009, 2010, 2011 Nicira Networks
f85f8ebb
BP
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef OVSDB_JSONRPC_SERVER_H
17#define OVSDB_JSONRPC_SERVER_H 1
18
0b3e7a8b
AE
19#include <stdbool.h>
20
f85f8ebb 21struct ovsdb;
0b1fae1b 22struct shash;
f85f8ebb 23
b93d3b6c 24struct ovsdb_jsonrpc_server *ovsdb_jsonrpc_server_create(struct ovsdb *);
23935e8b 25void ovsdb_jsonrpc_server_destroy(struct ovsdb_jsonrpc_server *);
b93d3b6c 26
94db5407
BP
27/* Options for a remote. */
28struct ovsdb_jsonrpc_options {
29 int max_backoff; /* Maximum reconnection backoff, in msec. */
30 int probe_interval; /* Max idle time before probing, in msec. */
31};
32struct ovsdb_jsonrpc_options *ovsdb_jsonrpc_default_options(void);
33
0b1fae1b
BP
34void ovsdb_jsonrpc_server_set_remotes(struct ovsdb_jsonrpc_server *,
35 const struct shash *);
b93d3b6c 36
0b3e7a8b
AE
37/* Status of a single remote connection. */
38struct ovsdb_jsonrpc_remote_status {
39 const char *state;
40 int last_error;
5eda645e
AE
41 unsigned int sec_since_connect;
42 unsigned int sec_since_disconnect;
0b3e7a8b 43 bool is_connected;
da897f41
BP
44 char *locks_held;
45 char *locks_waiting;
46 char *locks_lost;
a11f6164 47 int n_connections;
0b3e7a8b 48};
87fcbc60
BP
49bool ovsdb_jsonrpc_server_get_remote_status(
50 const struct ovsdb_jsonrpc_server *, const char *target,
51 struct ovsdb_jsonrpc_remote_status *);
da897f41
BP
52void ovsdb_jsonrpc_server_free_remote_status(
53 struct ovsdb_jsonrpc_remote_status *);
0b3e7a8b 54
31d0b6c9
BP
55void ovsdb_jsonrpc_server_reconnect(struct ovsdb_jsonrpc_server *);
56
f85f8ebb
BP
57void ovsdb_jsonrpc_server_run(struct ovsdb_jsonrpc_server *);
58void ovsdb_jsonrpc_server_wait(struct ovsdb_jsonrpc_server *);
59
60#endif /* ovsdb/jsonrpc-server.h */