CLEANUP: stream-int: add si_ib/si_ob to dereference the buffers

This makes the code cleaner and is more intuitive to use.
diff --git a/include/proto/stream_interface.h b/include/proto/stream_interface.h
index 745bbcb..889a855 100644
--- a/include/proto/stream_interface.h
+++ b/include/proto/stream_interface.h
@@ -64,6 +64,18 @@
 		return &LIST_ELEM(si, struct session *, si[0])->res;
 }
 
+/* returns the buffer which receives data from this stream interface (input channel's buffer) */
+static inline struct buffer *si_ib(struct stream_interface *si)
+{
+	return si_ic(si)->buf;
+}
+
+/* returns the buffer which feeds data to this stream interface (output channel's buffer) */
+static inline struct buffer *si_ob(struct stream_interface *si)
+{
+	return si_oc(si)->buf;
+}
+
 /* returns the session associated to a stream interface */
 static inline struct session *si_sess(struct stream_interface *si)
 {