Import from old repository commit 61ef2b42a9c4ba8e1600f15bb0236765edc2ad45.
[cascardo/ovs.git] / lib / ofp-print.h
1 /*
2  * Copyright (c) 2008, 2009 Nicira Networks.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 /* OpenFlow protocol pretty-printer. */
18
19 #ifndef OFP_PRINT_H
20 #define OFP_PRINT_H 1
21
22 #include <stdint.h>
23 #include <stdio.h>
24
25 struct ofp_flow_mod;
26 struct ofp_match;
27
28 #ifdef  __cplusplus
29 extern "C" {
30 #endif
31
32 void ofp_print(FILE *, const void *, size_t, int verbosity);
33 void ofp_print_packet(FILE *stream, const void *data, size_t len, size_t total_len);
34
35 char *ofp_to_string(const void *, size_t, int verbosity);
36 char *ofp_match_to_string(const struct ofp_match *, int verbosity);
37 char *ofp_packet_to_string(const void *data, size_t len, size_t total_len);
38 char *ofp_message_type_to_string(uint8_t type);
39
40 #ifdef  __cplusplus
41 }
42 #endif
43
44 #endif /* ofp-print.h */