X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fjsonrpc.h;h=16131d333b21c5109fc58eb2fa319f0dc4170879;hb=f125905cdd3dc0339ad968c0a70128807884b400;hp=ff04a547e35e71fe66641f3d8fdaa986a4e43647;hpb=11460e2316b88f0bd0ea0005d94338d800ea16bd;p=openvswitch diff --git a/lib/jsonrpc.h b/lib/jsonrpc.h index ff04a547..16131d33 100644 --- a/lib/jsonrpc.h +++ b/lib/jsonrpc.h @@ -22,6 +22,7 @@ #include #include +#include "openvswitch/types.h" struct json; struct jsonrpc_msg; @@ -38,8 +39,8 @@ struct stream; #define JSONRPC_TCP_PORT 6632 #define JSONRPC_SSL_PORT 6632 -int jsonrpc_stream_open(const char *name, struct stream **); -int jsonrpc_pstream_open(const char *name, struct pstream **); +int jsonrpc_stream_open(const char *name, struct stream **, uint8_t dscp); +int jsonrpc_pstream_open(const char *name, struct pstream **, uint8_t dscp); struct jsonrpc *jsonrpc_open(struct stream *); void jsonrpc_close(struct jsonrpc *); @@ -123,5 +124,7 @@ void jsonrpc_session_set_max_backoff(struct jsonrpc_session *, int max_backofF); void jsonrpc_session_set_probe_interval(struct jsonrpc_session *, int probe_interval); +void jsonrpc_session_set_dscp(struct jsonrpc_session *, + uint8_t dscp); #endif /* jsonrpc.h */