diff options
author | Simon Busch <morphis@gravedo.de> | 2011-10-27 18:30:50 +0200 |
---|---|---|
committer | Simon Busch <morphis@gravedo.de> | 2011-10-27 18:30:50 +0200 |
commit | a38db5807753c279eba7480c0e63e0b6357fef34 (patch) | |
tree | 5c1e2ac2d647d0fa6be74e53522facb629ab883d /samsung-ipc | |
parent | cb1d56371f28f69019051d9dd81624b91b52e85d (diff) | |
download | external_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')
-rw-r--r-- | samsung-ipc/Makefile.am | 1 | ||||
-rw-r--r-- | samsung-ipc/call.c | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/samsung-ipc/Makefile.am b/samsung-ipc/Makefile.am index e3d74fb..b26ba56 100644 --- a/samsung-ipc/Makefile.am +++ b/samsung-ipc/Makefile.am @@ -19,6 +19,7 @@ libsamsung_ipc_la_SOURCES = \ misc.c \ sec.c \ gprs.c \ + call.c \ $(NULL) libsamsung_ipc_la_LIBADD = \ 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); +} + |