Path: blob/main/vendor/golang.org/x/sys/unix/bluetooth_linux.go
2880 views
// Copyright 2016 The Go Authors. All rights reserved.1// Use of this source code is governed by a BSD-style2// license that can be found in the LICENSE file.34// Bluetooth sockets and messages56package unix78// Bluetooth Protocols9const (10BTPROTO_L2CAP = 011BTPROTO_HCI = 112BTPROTO_SCO = 213BTPROTO_RFCOMM = 314BTPROTO_BNEP = 415BTPROTO_CMTP = 516BTPROTO_HIDP = 617BTPROTO_AVDTP = 718)1920const (21HCI_CHANNEL_RAW = 022HCI_CHANNEL_USER = 123HCI_CHANNEL_MONITOR = 224HCI_CHANNEL_CONTROL = 325HCI_CHANNEL_LOGGING = 426)2728// Socketoption Level29const (30SOL_BLUETOOTH = 0x11231SOL_HCI = 0x032SOL_L2CAP = 0x633SOL_RFCOMM = 0x1234SOL_SCO = 0x1135)363738