summaryrefslogtreecommitdiffstats
path: root/stack/obx/hdrs/obx_dopt.c
diff options
context:
space:
mode:
Diffstat (limited to 'stack/obx/hdrs/obx_dopt.c')
-rw-r--r--stack/obx/hdrs/obx_dopt.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/stack/obx/hdrs/obx_dopt.c b/stack/obx/hdrs/obx_dopt.c
new file mode 100644
index 0000000..e3d0d27
--- /dev/null
+++ b/stack/obx/hdrs/obx_dopt.c
@@ -0,0 +1,52 @@
+/*****************************************************************************
+**
+** Name: obx_dopt.c
+**
+** File: OBEX Headers Decode Utility functions
+** - optional functions
+**
+** Copyright (c) 2003-2004, WIDCOMM Inc., All Rights Reserved.
+** WIDCOMM Bluetooth Core. Proprietary and confidential.
+**
+*****************************************************************************/
+#include "bt_target.h"
+#include "obx_api.h"
+
+
+
+
+
+
+/*******************************************************************************
+**
+** Function OBX_ReadTimeHdr
+**
+** Description This function is called to get the Time Header in the given
+** OBEX packet.
+**
+** Returns TRUE, if the header is in the OBEX packet.
+** FALSE, otherwise.
+**
+*******************************************************************************/
+BOOLEAN OBX_ReadTimeHdr(BT_HDR *p_pkt, UINT8 **p_time, UINT16 *p_len)
+{
+ return OBX_ReadByteStrHdr(p_pkt, OBX_HI_TIME, p_time, p_len, 0);
+}
+
+
+/*******************************************************************************
+**
+** Function OBX_ReadHttpHdr
+**
+** Description This function is called to get the HTTP Header in the
+** given OBEX packet.
+**
+** Returns TRUE, if the header is in the OBEX packet.
+** FALSE, otherwise.
+**
+*******************************************************************************/
+BOOLEAN OBX_ReadHttpHdr(BT_HDR *p_pkt, UINT8 **p_http, UINT16 *p_len, UINT8 next)
+{
+ return OBX_ReadByteStrHdr(p_pkt, OBX_HI_HTTP, p_http, p_len, next);
+}
+