From c08e23972a219ed427e40a16765f75cfe1bbe931 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Mon, 17 Sep 2018 17:08:17 +0200 Subject: [PATCH] goep_client: add goep_client_add_header_challenge_response --- src/classic/goep_client.c | 5 ++++- src/classic/goep_client.h | 10 +++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/src/classic/goep_client.c b/src/classic/goep_client.c index 69c76c216..c2fb647b9 100644 --- a/src/classic/goep_client.c +++ b/src/classic/goep_client.c @@ -468,6 +468,10 @@ void goep_client_add_header_application_parameters(uint16_t goep_cid, uint16_t l goep_client_add_header(goep_cid, OBEX_HEADER_APPLICATION_PARAMETERS, length, data); } +void goep_client_add_header_challenge_response(uint16_t goep_cid, uint16_t length, const uint8_t * data){ + goep_client_add_header(goep_cid, OBEX_HEADER_AUTHENTICATION_RESPONSE, length, data); +} + void goep_client_add_header_name(uint16_t goep_cid, const char * name){ UNUSED(goep_cid); goep_client_t * context = goep_client; @@ -501,7 +505,6 @@ int goep_client_execute(uint16_t goep_cid){ goep_client_t * context = goep_client; uint8_t * buffer = goep_client_get_outgoing_buffer(context); uint16_t pos = big_endian_read_16(buffer, 1); - printf_hexdump(buffer, pos); if (context->l2cap_psm){ // return l2cap_send_prepared(context->bearer_cid, pos); return l2cap_send(context->bearer_cid, buffer, pos); diff --git a/src/classic/goep_client.h b/src/classic/goep_client.h index d95246004..56b9c9760 100644 --- a/src/classic/goep_client.h +++ b/src/classic/goep_client.h @@ -161,10 +161,18 @@ void goep_client_add_header_count(uint16_t goep_cid, uint32_t count); * @brief Add application parameters header to current request * @param goep_cid * @param lenght of application parameters - * @param daa + * @param data */ void goep_client_add_header_application_parameters(uint16_t goep_cid, uint16_t length, const uint8_t * data); +/** + * @brief Add application parameters header to current request + * @param goep_cid + * @param lenght of challenge response + * @param data + */ +void goep_client_add_header_challenge_response(uint16_t goep_cid, uint16_t length, const uint8_t * data); + // int goep_client_add_body_static(uint16_t goep_cid, uint32_t length, uint8_t * data); // int goep_client_add_body_dynamic(uint16_t goep_cid, uint32_t length, void (*data_callback)(uint32_t offset, uint8_t * buffer, uint32_t len));