/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #pragma once // FIXME: look into sharing definitions across OS's (i.e. UUID and port ). // Look into dynamically determining which ports are available. // SDP is a Service Description Protocol cf. // http://developer.bluetooth.org/TechnologyOverview/Pages/DI.aspx // This is an XML representation, an alternative would be a // binary SDP record. // for numbers see: // https://www.bluetooth.org/Technical/AssignedNumbers/service_discovery.htm const char * const bluetooth_service_record = "" "" "" // Service class ID list "" "" // an assigned service class meaning: 'serial port' // we could add our own 'LibreOffice remote' service // class here too in future ... "" "" "" // Protocol Descriptor list "" "" "" // L2CAP Protocol descriptor "" "" "" // enumeration value of RFCOMM protocol "" // RFCOMM port number "" "" "" "" // Browse Group List "" "" // public browse class "" "" "" // Language Base Attribute ID List "" "" // code_ISO639 "" // encoding 0x6a "" // base_offset ie. points to below => "" "" "" // Bluetooth Profile Descriptor List "" "" "" // 'serial port' UUID as above ""// version number 1.0 ? "" "" "" // Attribute identifiers are pointed to by the Language Base Attribute ID List // id+0 = ServiceName, id+1 = ServiceDescription, id+2=ProviderName "" "" "" "" "" "" "" ; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */