aboutsummaryrefslogtreecommitdiffstats
path: root/src/ipc.h
diff options
context:
space:
mode:
authorjames <>2008-02-15 23:52:12 +0000
committerjames <>2008-02-15 23:52:12 +0000
commit85a601f7fcaaa64d58567779236a4f3568c219ad (patch)
tree8f759603b660edb1ff7419cd10d4787f3a2fd33b /src/ipc.h
parent15e84568cdefdddc2191d15156ab5e35d57b47be (diff)
downloadsympathy-85a601f7fcaaa64d58567779236a4f3568c219ad.tar.gz
sympathy-85a601f7fcaaa64d58567779236a4f3568c219ad.tar.bz2
sympathy-85a601f7fcaaa64d58567779236a4f3568c219ad.zip
*** empty log message ***
Diffstat (limited to 'src/ipc.h')
-rw-r--r--src/ipc.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ipc.h b/src/ipc.h
index b83f736..2713de7 100644
--- a/src/ipc.h
+++ b/src/ipc.h
@@ -12,6 +12,9 @@
/*
* $Log$
+ * Revision 1.3 2008/02/15 23:52:12 james
+ * *** empty log message ***
+ *
* Revision 1.2 2008/02/15 03:32:07 james
* *** empty log message ***
*
@@ -35,6 +38,7 @@
#define IPC_MSG_TYPE_SETBAUD 7
#define IPC_MSG_TYPE_SENDBREAK 8
#define IPC_MSG_TYPE_SETFLOW 9
+#define IPC_MSG_TYPE_HANGUP 10
typedef struct
{
@@ -120,6 +124,13 @@ typedef struct
} IPC_Msg_setflow;
+typedef struct
+{
+ int32_t size;
+ int32_t type;
+} IPC_Msg_hangup;
+
+
typedef union
{
@@ -134,6 +145,7 @@ IPC_Msg_status status;
IPC_Msg_setbaud setbaud;
IPC_Msg_sendbreak sendbreak;
IPC_Msg_setflow setflow;
+IPC_Msg_hangup hangup;
} IPC_Msg;