summaryrefslogtreecommitdiff
path: root/gobex/gobex.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2012-01-03 15:52:22 +0200
committerMarcel Holtmann <marcel@holtmann.org>2012-12-04 22:22:05 +0100
commitf062c46212162b7e6fcdacd3db0ec0a8312fc889 (patch)
tree334cf1a9f813a2e0001ff159575af0d2975dcea2 /gobex/gobex.c
parent6e7d00ceec06198430afb17f1e1c36ddd2e4b26a (diff)
downloadbluez-f062c46212162b7e6fcdacd3db0ec0a8312fc889.tar.gz
gobex: handle Single Response Mode Parameters (SRMP) headers
Single Response Mode Parameters is a 1-byte quantity containing the value for the parameters used for SRM.
Diffstat (limited to 'gobex/gobex.c')
-rw-r--r--gobex/gobex.c39
1 files changed, 34 insertions, 5 deletions
diff --git a/gobex/gobex.c b/gobex/gobex.c
index e225a5026..ed051ee49 100644
--- a/gobex/gobex.c
+++ b/gobex/gobex.c
@@ -50,6 +50,8 @@ struct srm_config {
guint8 op;
gboolean enabled;
guint8 srm;
+ guint8 srmp;
+ gboolean outgoing;
};
struct _GObex {
@@ -441,6 +443,21 @@ static void prepare_connect_rsp(GObex *obex, GObexPacket *rsp)
g_obex_packet_prepend_header(rsp, connid);
}
+static void set_srmp(GObex *obex, guint8 srmp, gboolean outgoing)
+{
+ struct srm_config *config = obex->srm;
+
+ if (config == NULL)
+ return;
+
+ /* Dont't reset if direction doesn't match */
+ if (srmp > G_OBEX_SRMP_NEXT_WAIT && config->outgoing != outgoing)
+ return;
+
+ config->srmp = srmp;
+ config->outgoing = outgoing;
+}
+
static void set_srm(GObex *obex, guint8 op, guint8 srm)
{
struct srm_config *config = obex->srm;
@@ -482,7 +499,7 @@ done:
obex->srm = NULL;
}
-static void setup_srm(GObex *obex, GObexPacket *pkt)
+static void setup_srm(GObex *obex, GObexPacket *pkt, gboolean outgoing)
{
GObexHeader *hdr;
guint8 op;
@@ -498,6 +515,15 @@ static void setup_srm(GObex *obex, GObexPacket *pkt)
set_srm(obex, op, srm);
}
+ hdr = g_obex_packet_get_header(pkt, G_OBEX_HDR_SRMP);
+ if (hdr != NULL) {
+ guint8 srmp;
+ g_obex_header_get_uint8(hdr, &srmp);
+ g_obex_debug(G_OBEX_DEBUG_COMMAND, "srmp 0x%02x", srmp);
+ set_srmp(obex, srmp, outgoing);
+ } else
+ set_srmp(obex, -1, outgoing);
+
if (obex->srm == NULL || !obex->srm->enabled || !final)
return;
@@ -529,7 +555,7 @@ gboolean g_obex_send(GObex *obex, GObexPacket *pkt, GError **err)
if (obex->rx_last_op == G_OBEX_OP_CONNECT)
prepare_connect_rsp(obex, pkt);
- setup_srm(obex, pkt);
+ setup_srm(obex, pkt, TRUE);
p = g_new0(struct pending_pkt, 1);
p->pkt = pkt;
@@ -551,7 +577,7 @@ guint g_obex_send_req(GObex *obex, GObexPacket *req, gint timeout,
g_obex_debug(G_OBEX_DEBUG_COMMAND, "conn %u", obex->conn_id);
- setup_srm(obex, req);
+ setup_srm(obex, req, TRUE);
if (obex->conn_id == CONNID_INVALID)
goto create_pending;
@@ -773,6 +799,9 @@ gboolean g_obex_srm_active(GObex *obex)
if (obex->srm == NULL || !obex->srm->enabled)
goto done;
+ if (obex->srm->srmp <= G_OBEX_SRMP_NEXT_WAIT)
+ goto done;
+
ret = TRUE;
done:
g_obex_debug(G_OBEX_DEBUG_COMMAND, "%s", ret ? "yes" : "no");
@@ -814,7 +843,7 @@ static gboolean parse_response(GObex *obex, GObexPacket *rsp)
if (opcode == G_OBEX_OP_CONNECT)
parse_connect_data(obex, rsp);
- setup_srm(obex, rsp);
+ setup_srm(obex, rsp, FALSE);
if (!g_obex_srm_active(obex))
return final;
@@ -905,7 +934,7 @@ static int parse_request(GObex *obex, GObexPacket *req)
return -G_OBEX_RSP_SERVICE_UNAVAILABLE;
}
- setup_srm(obex, req);
+ setup_srm(obex, req, FALSE);
return op;
}