MEDIUM: stream-interface: provide a generic stream_int_chk_snd_conn() function

This one can be used by both sock_raw and sock_ssl instead of each having their own.
diff --git a/include/proto/stream_interface.h b/include/proto/stream_interface.h
index 24072a6..844d925 100644
--- a/include/proto/stream_interface.h
+++ b/include/proto/stream_interface.h
@@ -40,6 +40,7 @@
 int stream_int_shutr(struct stream_interface *si);
 int stream_int_shutw(struct stream_interface *si);
 void stream_int_chk_rcv_conn(struct stream_interface *si);
+void stream_int_chk_snd_conn(struct stream_interface *si);
 
 extern struct sock_ops stream_int_embedded;
 extern struct sock_ops stream_int_task;