aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/gprs.c
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2011-10-25 07:53:34 +0200
committerSimon Busch <morphis@gravedo.de>2011-10-25 18:48:41 +0200
commit5c29db2090555128d66f97dfa580af2967900b95 (patch)
tree2bf1df30918f7087425f8946a408bda25b8f02e1 /samsung-ipc/gprs.c
parentdb2112e4f135bcdd7c1533e9e973dddebb6bf37c (diff)
downloadexternal_libsamsung-ipc-5c29db2090555128d66f97dfa580af2967900b95.zip
external_libsamsung-ipc-5c29db2090555128d66f97dfa580af2967900b95.tar.gz
external_libsamsung-ipc-5c29db2090555128d66f97dfa580af2967900b95.tar.bz2
Implement several parts of known gprs messages types
Signed-off-by: Simon Busch <morphis@gravedo.de>
Diffstat (limited to 'samsung-ipc/gprs.c')
-rw-r--r--samsung-ipc/gprs.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/samsung-ipc/gprs.c b/samsung-ipc/gprs.c
new file mode 100644
index 0000000..abe59dd
--- /dev/null
+++ b/samsung-ipc/gprs.c
@@ -0,0 +1,43 @@
+/**
+ * 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>
+
+void ipc_gprs_define_pdp_context_setup(struct ipc_gprs_define_pdp_context *message, char *apn)
+{
+ assert(message != NULL);
+ message->unk0[0] = 0x1;
+ message->unk0[1] = 0x1;
+ message->unk0[2] = 0x2;
+ strncpy(message->apn, apn, 124);
+}
+
+void ipc_gprs_pdp_context_setup(struct ipc_gprs_pdp_context *message, char *username, char *password)
+{
+ assert(message != NULL);
+ message->unk0[0] = 0x1;
+ message->unk0[1] = 0x1;
+ message->unk0[2] = 0x13;
+ strncpy(message->username, username, 32);
+ strncpy(message->password, password, 32);
+}