summaryrefslogtreecommitdiffstats
path: root/sesman/tools/tcp.h
diff options
context:
space:
mode:
authorilsimo <ilsimo>2007-05-06 21:14:09 +0000
committerilsimo <ilsimo>2007-05-06 21:14:09 +0000
commitb97a2d263114d6ff74a3061b7511a39997382fe4 (patch)
tree4d1285bdc308486f9c3fe7b2f6882d04e7fb74ec /sesman/tools/tcp.h
parent8234ebcf70a3153b97bd88016f0e867687044a09 (diff)
downloadxrdp-proprietary-b97a2d263114d6ff74a3061b7511a39997382fe4.tar.gz
xrdp-proprietary-b97a2d263114d6ff74a3061b7511a39997382fe4.zip
adding forgotten files
Diffstat (limited to 'sesman/tools/tcp.h')
-rw-r--r--sesman/tools/tcp.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/sesman/tools/tcp.h b/sesman/tools/tcp.h
new file mode 100644
index 00000000..e8fee60b
--- /dev/null
+++ b/sesman/tools/tcp.h
@@ -0,0 +1,67 @@
+/*
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ xrdp: A Remote Desktop Protocol server.
+ Copyright (C) Jay Sorg 2005-2007
+*/
+
+/**
+ *
+ * @file tcp.h
+ * @brief Tcp stream functions declarations
+ * @author Jay Sorg, Simone Fedele
+ *
+ */
+
+#ifndef TCP_H
+#define TCP_H
+
+/**
+ *
+ * @brief Force receiving data from tcp stream
+ * @param sck The socket to read from
+ * @param data Data buffer
+ * @param len Data buffer size
+ * @return 0 on success, 1 on error
+ *
+ */
+int DEFAULT_CC
+tcp_force_recv(int sck, char* data, int len);
+
+/**
+ *
+ * @brief Force sending data to tcp stream
+ * @param sck the socket to write to
+ * @param data Data buffer
+ * @param len Data buffer size
+ * @return 0 on success, 1 on error
+ *
+ */
+int DEFAULT_CC
+tcp_force_send(int sck, char* data, int len);
+
+/**
+ *
+ * @brief Binds the listening socket
+ * @param sck Listening socket
+ * @param addr Listening address
+ * @param port Listening port
+ * @return 0 on success, -1 on error
+ *
+ */
+int DEFAULT_CC
+tcp_bind(int sck, char* addr, char* port);
+
+#endif