summaryrefslogtreecommitdiff
path: root/src/sdp-xml.c
Commit message (Collapse)AuthorAgeFilesLines
* src: Add SPDX License IdentifierTedd Ho-Jeong An2020-09-211-14/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds SPDX License Identifier and removes the license text. ------------------------------------- License COUNT ------------------------------------- LGPL-2.1-or-later : 62 GPL-2.0-or-later : 51 BSD-2-Clause : 2 License: LGPL-2.1-or-later src/adv_monitor.c src/adv_monitor.h src/shared/mainloop-glib.c src/shared/btp.c src/shared/tester.c src/shared/btsnoop.c src/shared/gatt-helpers.h src/shared/log.h src/shared/util.h src/shared/mainloop-ell.c src/shared/hci-crypto.c src/shared/mainloop.c src/shared/hfp.h src/shared/mainloop-notify.c src/shared/io-mainloop.c src/shared/btsnoop.h src/shared/uhid.h src/shared/util.c src/shared/ringbuf.c src/shared/btp.h src/shared/shell.h src/shared/io-glib.c src/shared/queue.h src/shared/gatt-server.h src/shared/crypto.c src/shared/crypto.h src/shared/io-ell.c src/shared/timeout-glib.c src/shared/mgmt.c src/shared/gatt-db.c src/shared/mainloop-notify.h src/shared/hfp.c src/shared/timeout-ell.c src/shared/shell.c src/shared/hci.c src/shared/log.c src/shared/ringbuf.h src/shared/gatt-helpers.c src/shared/queue.c src/shared/tty.h src/shared/timeout-mainloop.c src/shared/tester.h src/shared/gap.h src/shared/mgmt.h src/shared/gatt-db.h src/shared/uhid.c src/shared/mainloop.h src/shared/timeout.h src/shared/att-types.h src/shared/pcap.c src/shared/gap.c src/shared/att.c src/shared/pcap.h src/shared/hci.h src/shared/gatt-client.h src/shared/io.h src/shared/gatt-client.c src/shared/ad.c src/shared/att.h src/shared/gatt-server.c src/shared/hci-crypto.h src/shared/ad.h License: GPL-2.0-or-later src/attrib-server.h src/advertising.h src/textfile.c src/attrib-server.c src/uinput.h src/log.h src/eir.h src/sdpd.h src/sdpd-request.c src/service.h src/sdpd-database.c src/adapter.h src/plugin.h src/uuid-helper.h src/plugin.c src/main.c src/sdp-xml.c src/error.h src/oui.c src/device.c src/agent.h src/sdp-client.c src/oui.h src/device.h src/gatt-database.c src/error.c src/backtrace.c src/sdpd-server.c src/adapter.c src/log.c src/agent.c src/backtrace.h src/sdp-xml.h src/hcid.h src/dbus-common.h src/uuid-helper.c src/storage.c src/profile.c src/advertising.c src/storage.h src/dbus-common.c src/profile.h src/sdpd-service.c src/eir.c src/sdp-client.h src/gatt-database.h src/gatt-client.h src/rfkill.c src/gatt-client.c src/service.c src/textfile.h License: BSD-2-Clause src/shared/ecc.h src/shared/ecc.c
* build: Move declaration of _GNU_SOURCE back into individual source filesMarcel Holtmann2018-12-061-0/+1
|
* core: Use local libbluetooth includesMarcel Holtmann2015-02-281-2/+2
|
* sdp: Fix missing sdp_xml_parse_string_decode() NULL return checkJohan Hedberg2014-06-161-0/+4
|
* sdp: Fix memory issues to avoid potential crashVikrampal Yadav2014-06-161-1/+15
| | | | | NULL pointer check added to handle memory allocation failure scenarios.
* sdp-xml: Remove newline before EOFSyam Sidhardhan2013-01-091-1/+0
|
* core: Remove the total silly usage of gchar and replace it with just charMarcel Holtmann2013-01-041-3/+3
|
* core: Make sdp-xml encoding defines privateJohan Hedberg2012-12-181-0/+3
|
* core: Make sdp-xml functions private that aren't used publicallyJohan Hedberg2012-12-181-387/+388
|
* Revert "Ensure config.h is included by using CPPFLAGS"Johan Hedberg2012-12-071-0/+4
| | | | | | | | | | | | | | This reverts commit 8a03376544b046a84301847d1594f6c3674983ff. The patch needs to be split up and the gdbus/ changes were bogus compared to the original commit message. Conflicts: Makefile.am Makefile.obexd profiles/cyclingspeed/cyclingspeed.c profiles/heartrate/heartrate.c src/error.c
* Ensure config.h is included by using CPPFLAGSLucas De Marchi2012-12-051-4/+0
| | | | | | | | | | Instead of trying to include config.h in each file over the tree and possibly forgetting to include it, give a "-include config.h" argument to the compiler so it's guaranteed that a) it will be included for all source files and b) it will be the first header included. gdbus/ directory is left out, since it would break other projects using it.
* build-sys: Define _GNU_SOURCE in config.hLucas De Marchi2012-12-051-1/+0
| | | | | | Instead of defining _GNU_SOURCE in each source file (and potentially forgetting in some), tell the build system we use extensions and let it define _GNU_SOURCE in config.h.
* sdp-xml: Fix parsing of unknown elementsJohan Hedberg2012-11-171-0/+5
|
* core: Move sdp_xml_parse_record from service plugin to sdp-xml.cJohan Hedberg2012-10-021-0/+209
|
* sdp: Fix redundant NULL checks in convert_raw_attr_to_xml_funcSzymon Janc2012-08-281-4/+1
| | | | Param data can't be NULL and was already dereferenced before check.
* Fix unused variable warnings reported by GCC 4.6Johan Hedberg2011-05-151-7/+1
|
* Fix empty parameter list in functions declarationsSzymon Janc2011-05-151-1/+1
| | | | | Use foo(void) instead of foo() for parameterless functions declaration. This allows compiler to check if foo is called without parameters.
* Get rid of redundant type casts from SDP codeJohan Hedberg2010-10-271-6/+5
|
* Fix redundant null check on calling free()Gustavo F. Padovan2010-06-081-6/+2
| | | | Issues found by smatch static check: http://smatch.sourceforge.net/
* Update copyright informationMarcel Holtmann2010-01-011-1/+1
|
* Move common files into src directoryMarcel Holtmann2009-08-281-0/+794