goep_client.h (2fca4dad957cd7b88f4657ed51e89c12615dda72) | goep_client.h (3ffc2a09a40e02738b170f6d8d7029d83f7d6a7f) |
---|---|
1/* 2 * Copyright (C) 2014 BlueKitchen GmbH 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright --- 83 unchanged lines hidden (view full) --- 92/** 93 * @brief Get Opcode from last created request, needed for parsing of OBEX response packet 94 * @param goep_cid 95 * @return opcode 96 */ 97uint8_t goep_client_get_request_opcode(uint16_t goep_cid); 98 99/** | 1/* 2 * Copyright (C) 2014 BlueKitchen GmbH 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright --- 83 unchanged lines hidden (view full) --- 92/** 93 * @brief Get Opcode from last created request, needed for parsing of OBEX response packet 94 * @param goep_cid 95 * @return opcode 96 */ 97uint8_t goep_client_get_request_opcode(uint16_t goep_cid); 98 99/** |
100 * brief Get PBAP Supported Features found in SDP record during connect | 100 * @brief Get PBAP Supported Features found in SDP record during connect |
101 */ 102uint32_t goep_client_get_pbap_supported_features(uint16_t goep_cid); 103 104/** | 101 */ 102uint32_t goep_client_get_pbap_supported_features(uint16_t goep_cid); 103 104/** |
105 * @brief Check if GOEP 2.0 or higher features can be used 106 * @return true if GOEP Version 2.0 or higher 107 */ 108bool goep_client_version_20_or_higher(uint16_t goep_cid); 109 110/** |
|
105 * @brief Set Connection ID used for newly created requests 106 * @param goep_cid 107 */ 108void goep_client_set_connection_id(uint16_t goep_cid, uint32_t connection_id); 109 110/** 111 * @brief Start Connect request 112 * @param goep_cid --- 149 unchanged lines hidden --- | 111 * @brief Set Connection ID used for newly created requests 112 * @param goep_cid 113 */ 114void goep_client_set_connection_id(uint16_t goep_cid, uint32_t connection_id); 115 116/** 117 * @brief Start Connect request 118 * @param goep_cid --- 149 unchanged lines hidden --- |