X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=linux_module%2Fpalacios-stream.h;h=d3b73e14a2d9cf0f1aff5042f2d2c0a206fe335a;hb=b44db8fef71ea6c1c996b6c1fb162f61317a53be;hp=f3b21a0c785538e52ed3bb775de73dc855c5ce7f;hpb=52862a01560b5b12db9f8f7b6e16013a81a86939;p=palacios.git diff --git a/linux_module/palacios-stream.h b/linux_module/palacios-stream.h index f3b21a0..d3b73e1 100644 --- a/linux_module/palacios-stream.h +++ b/linux_module/palacios-stream.h @@ -32,11 +32,12 @@ struct stream_buffer { void palacios_init_stream(void); void palacios_deinit_stream(void); -int stream_enqueue(struct stream_buffer * stream, char * buf, int len); + int stream_dequeue(struct stream_buffer * stream, char * buf, int len); int stream_datalen(struct stream_buffer * stream); struct stream_buffer * find_stream_by_name(struct v3_guest * guest, const char * name); +int open_stream(const char * name); #endif