1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* SPDX-License-Identifier: GPL-2.0 */ /* * BlueZ - Bluetooth protocol stack for Linux * * Copyright (C) 2022 Intel Corporation */ #ifndef __ISO_H #define __ISO_H /* ISO defaults */ #define ISO_DEFAULT_MTU 251 /* ISO socket address */ struct sockaddr_iso { sa_family_t iso_family; bdaddr_t iso_bdaddr; __u8 iso_bdaddr_type; }; #endif /* __ISO_H */