include/net/bluetooth/sco.h

Source file repositories/reference/linux-study-clean/include/net/bluetooth/sco.h

File Facts

System
Linux kernel
Corpus path
include/net/bluetooth/sco.h
Extension
.h
Size
1350 bytes
Lines
47
Domain
Networking Core
Bucket
Sockets, Protocols, Packet Path, And Network Policy
Inferred role
Networking Core: implementation source
Status
source implementation candidate

Why This File Exists

Networking stack implementation surface: socket APIs, protocol dispatch, packet flow, routing, filtering, and network namespaces.

Dependency Surface

Detected Declarations

Annotated Snippet

struct sockaddr_sco {
	sa_family_t	sco_family;
	bdaddr_t	sco_bdaddr;
};

/* SCO socket options */
#define SCO_OPTIONS	0x01
struct sco_options {
	__u16 mtu;
};

#define SCO_CONNINFO	0x02
struct sco_conninfo {
	__u16 hci_handle;
	__u8  dev_class[3];
};

#endif /* __SCO_H */

Annotation

Implementation Notes