aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/call.c
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2011-10-27 18:30:50 +0200
committerSimon Busch <morphis@gravedo.de>2011-10-27 18:30:50 +0200
commita38db5807753c279eba7480c0e63e0b6357fef34 (patch)
tree5c1e2ac2d647d0fa6be74e53522facb629ab883d /samsung-ipc/call.c
parentcb1d56371f28f69019051d9dd81624b91b52e85d (diff)
downloadexternal_libsamsung-ipc-a38db5807753c279eba7480c0e63e0b6357fef34.zip
external_libsamsung-ipc-a38db5807753c279eba7480c0e63e0b6357fef34.tar.gz
external_libsamsung-ipc-a38db5807753c279eba7480c0e63e0b6357fef34.tar.bz2
Add setup method for call outgoing message and various cleanups for call messages
Signed-off-by: Simon Busch <morphis@gravedo.de>
Diffstat (limited to 'samsung-ipc/call.c')
-rw-r--r--samsung-ipc/call.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/samsung-ipc/call.c b/samsung-ipc/call.c
new file mode 100644
index 0000000..9573a8d
--- /dev/null
+++ b/samsung-ipc/call.c
@@ -0,0 +1,38 @@
+/**
+ * This file is part of libsamsung-ipc.
+ *
+ * Copyright (C) 2011 Simon Busch <morphis@gravedo.de>
+ *
+ * libsamsung-ipc 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * libsamsung-ipc 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 libsamsung-ipc. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#include <radio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <assert.h>
+
+#define OUTGOING_NUMBER_MAX_LENGTH 86
+
+void ipc_call_outgoing_setup(struct ipc_call_outgoing *message, unsigned char type,
+ unsigned char identity, unsigned char prefix, char *number)
+{
+ assert(message != NULL);
+
+ message->type = type;
+ message->identity = identity;
+ message->prefix = prefix;
+ strncpy(message->number, number, OUTGOING_NUMBER_MAX_LENGTH);
+}
+