summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--project/common.mk1
-rw-r--r--src/daemon/ptyc_daemon_connect.c27
2 files changed, 28 insertions, 0 deletions
diff --git a/project/common.mk b/project/common.mk
index 838a6bb..a5c1120 100644
--- a/project/common.mk
+++ b/project/common.mk
@@ -7,6 +7,7 @@ COMMON_SRCS = \
src/console/ptyc_console_poller.c \
src/console/ptyc_console_reader.c \
src/console/ptyc_console_writer.c \
+ src/daemon/ptyc_daemon_connect.c \
src/daemon/ptyc_daemon_init.c \
src/daemon/ptyc_daemon_loop.c \
src/debug/ptyc_dbg_cat.c \
diff --git a/src/daemon/ptyc_daemon_connect.c b/src/daemon/ptyc_daemon_connect.c
new file mode 100644
index 0000000..82626b8
--- /dev/null
+++ b/src/daemon/ptyc_daemon_connect.c
@@ -0,0 +1,27 @@
+/*********************************************************/
+/* ptycon: a pty-console bridge */
+/* Copyright (C) 2016 Z. Gilboa */
+/* Released under GPLv2 and GPLv3; see COPYING.PTYCON. */
+/*********************************************************/
+
+#include <psxtypes/psxtypes.h>
+#include <ntapi/ntapi.h>
+
+#include <ptycon/ptycon.h>
+#include "ptycon_daemon_impl.h"
+#include "ptycon_driver_impl.h"
+
+int32_t __stdcall ptyc_daemon_connect(nt_tty_port_msg * msg)
+{
+ void * hport = 0;
+
+ msg->ttyinfo.reserved = 0;
+
+ ntapi->zw_accept_connect_port(
+ &hport,
+ msg->header.client_id.process_id,
+ &msg->header,
+ NT_LPC_ACCEPT_CONNECTION,0,0);
+
+ return ntapi->zw_complete_connect_port(hport);
+}