summaryrefslogtreecommitdiff
path: root/src/lib/ecore_con/efl_network_ssh_channel_base.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/ecore_con/efl_network_ssh_channel_base.eo')
-rw-r--r--src/lib/ecore_con/efl_network_ssh_channel_base.eo40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/lib/ecore_con/efl_network_ssh_channel_base.eo b/src/lib/ecore_con/efl_network_ssh_channel_base.eo
new file mode 100644
index 0000000000..089ba0fde6
--- /dev/null
+++ b/src/lib/ecore_con/efl_network_ssh_channel_base.eo
@@ -0,0 +1,40 @@
+class Efl.Network.Ssh.Channel.Base
+{
+ eo_prefix: efl_network_ssh_channel;
+ legacy_prefix: ecore_con_ssh_channel;
+ methods {
+ data_send {
+ params {
+ const(void)* data;
+ size_t size;
+ }
+ return: bool;
+ }
+ binbuf_send {
+ params {
+ const(Eina_Binbuf)* data;
+ }
+ return: bool;
+ }
+ data_ext_send {
+ params {
+ uint type;
+ const(void)* data;
+ size_t size;
+ }
+ return: bool;
+ }
+ binbuf_ext_send {
+ params {
+ uint type;
+ const(Eina_Binbuf)* data;
+ }
+ return: bool;
+ }
+ }
+ events {
+ data,received;
+ data,error;
+ request,reply;
+ }
+}