| 1234567891011121314151617181920212223 |
- // SPDX-License-Identifier: LGPL-2.1-or-later
- /*
- *
- * BlueZ - Bluetooth protocol stack for Linux
- *
- * Copyright (C) 2011-2014 Intel Corporation
- * Copyright (C) 2002-2010 Marcel Holtmann <marcel@holtmann.org>
- *
- *
- */
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #define _GNU_SOURCE
- #include "packet.h"
- #include "vendor.h"
- void vendor_event(uint16_t manufacturer, const void *data, uint8_t size)
- {
- packet_hexdump(data, size);
- }
|