как создать сокет для bth
socket(AF_BTH, SOCK_STREAM, BTHPROTO_RFCOMM) - этот вызов возвращает INVALID_SOCKET.
WSAGetLastError возвращает 10047 (WSAEAFNOSUPPORT), что по "учебнику" значит Address family not supported by protocol family.
An address incompatible with the requested protocol was used. All sockets are created with an associated address family (that is, AF_INET for Internet Protocols) and a generic protocol type (that is, SOCK_STREAM). This error is returned if an incorrect protocol is explicitly requested in the socket call, or if an address of the wrong family is used for a socket, for example, in sendto.
как побороть?
ps Winsock version 2.2
Шо за бтх - хз, но, если система не поддерживает - выхода 2, или поискать библиотеку для работы, или через raw sockets
bth - bluetooth
тут ответ на мой вопрос: