cvs commit: src/etc/bluetooth hcsecd.conf hosts protocols src/lib
Makefile src/lib/libbluetooth Makefile bluetooth.3 bluetooth.c
bluetooth.h src/lib/libsdp Makefile sdp-int.h sdp.3 sdp.h search.c
session.c util.c src/share/man/man4 ng_bluetooth.4 ng_bt3c.4 ...
Maksim Yevmenkin
emax at FreeBSD.org
Sun Oct 12 15:04:26 PDT 2003
emax 2003/10/12 15:04:24 PDT
FreeBSD src repository
Modified files:
lib Makefile
share/man/man4 ng_bluetooth.4 ng_bt3c.4 ng_btsocket.4
ng_h4.4 ng_hci.4 ng_l2cap.4 ng_ubt.4
ubtbcmfw.4
share/man/man5 Makefile
share/mk bsd.libnames.mk
sys/modules/netgraph/bluetooth/bluetooth Makefile
sys/modules/netgraph/bluetooth/bt3c Makefile
sys/modules/netgraph/bluetooth/h4 Makefile
sys/modules/netgraph/bluetooth/hci Makefile
sys/modules/netgraph/bluetooth/l2cap Makefile
sys/modules/netgraph/bluetooth/socket Makefile
sys/modules/netgraph/bluetooth/ubt Makefile
sys/modules/netgraph/bluetooth/ubtbcmfw Makefile
sys/netgraph/bluetooth/drivers/ubt ng_ubt.c
sys/netgraph/bluetooth/drivers/ubtbcmfw ubtbcmfw.c
sys/netgraph/bluetooth/hci ng_hci_cmds.c ng_hci_evnt.c
ng_hci_misc.c ng_hci_misc.h
ng_hci_ulpi.c
sys/netgraph/bluetooth/l2cap ng_l2cap_cmds.c ng_l2cap_evnt.c
ng_l2cap_llpi.c ng_l2cap_misc.c
ng_l2cap_misc.h
sys/netgraph/bluetooth/socket ng_btsocket.c
ng_btsocket_hci_raw.c
ng_btsocket_l2cap.c
ng_btsocket_l2cap_raw.c
ng_btsocket_rfcomm.c
usr.bin Makefile
usr.bin/bluetooth Makefile
usr.bin/bluetooth/btsockstat Makefile btsockstat.1
btsockstat.c
usr.bin/bluetooth/rfcomm_sppd Makefile rfcomm_sppd.1
rfcomm_sppd.c
usr.sbin Makefile
usr.sbin/bluetooth Makefile
usr.sbin/bluetooth/bcmfw Makefile bcmfw.8
usr.sbin/bluetooth/bt3cfw Makefile bt3cfw.8 bt3cfw.c
usr.sbin/bluetooth/hccontrol Makefile hccontrol.8 hccontrol.c
hccontrol.h
host_controller_baseband.c info.c
link_control.c link_policy.c
node.c send_recv.c status.c
util.c
usr.sbin/bluetooth/hcsecd Makefile hcsecd.8 hcsecd.c hcsecd.h
parser.y
usr.sbin/bluetooth/hcseriald Makefile hcseriald.8 hcseriald.c
usr.sbin/bluetooth/l2control Makefile l2cap.c l2control.8
l2control.c
usr.sbin/bluetooth/l2ping Makefile l2ping.8 l2ping.c
usr.sbin/bluetooth/rfcomm_pppd Makefile rfcomm_pppd.8
rfcomm_pppd.c
Added files:
etc/bluetooth hcsecd.conf hosts protocols
lib/libbluetooth Makefile bluetooth.3 bluetooth.c
bluetooth.h
lib/libsdp Makefile sdp-int.h sdp.3 sdp.h search.c
session.c util.c
share/man/man5 bluetooth.hosts.5 bluetooth.protocols.5
usr.bin/bluetooth Makefile.inc
usr.bin/bluetooth/bthost Makefile bthost.1 bthost.c
usr.bin/bluetooth/rfcomm_sppd rfcomm_sdp.c
usr.sbin/bluetooth Makefile.inc
usr.sbin/bluetooth/hcsecd hcsecd.conf.5
usr.sbin/bluetooth/sdpcontrol Makefile sdpcontrol.8
sdpcontrol.c sdpcontrol.h
search.c
Log:
Update Bluetooth code.
Reviewed by: M. Warner Losh <imp at bsdimp.com>; John Hay <jhay at freebsd.org>
Approved by: M. Warner Losh <imp at bsdimp.com> (mentor)
Revision Changes Path
1.1 +56 -0 src/etc/bluetooth/hcsecd.conf (new)
1.1 +11 -0 src/etc/bluetooth/hosts (new)
1.1 +21 -0 src/etc/bluetooth/protocols (new)
1.173 +5 -2 src/lib/Makefile
1.1 +30 -0 src/lib/libbluetooth/Makefile (new)
1.1 +293 -0 src/lib/libbluetooth/bluetooth.3 (new)
1.1 +369 -0 src/lib/libbluetooth/bluetooth.c (new)
1.1 +78 -0 src/lib/libbluetooth/bluetooth.h (new)
1.1 +33 -0 src/lib/libsdp/Makefile (new)
1.1 +65 -0 src/lib/libsdp/sdp-int.h (new)
1.1 +309 -0 src/lib/libsdp/sdp.3 (new)
1.1 +477 -0 src/lib/libsdp/sdp.h (new)
1.1 +383 -0 src/lib/libsdp/search.c (new)
1.1 +174 -0 src/lib/libsdp/session.c (new)
1.1 +439 -0 src/lib/libsdp/util.c (new)
1.6 +1 -1 src/share/man/man4/ng_bluetooth.4
1.6 +1 -1 src/share/man/man4/ng_bt3c.4
1.6 +5 -1 src/share/man/man4/ng_btsocket.4
1.5 +1 -1 src/share/man/man4/ng_h4.4
1.6 +1 -1 src/share/man/man4/ng_hci.4
1.6 +3 -3 src/share/man/man4/ng_l2cap.4
1.5 +1 -1 src/share/man/man4/ng_ubt.4
1.3 +1 -1 src/share/man/man4/ubtbcmfw.4
1.52 +2 -1 src/share/man/man5/Makefile
1.1 +63 -0 src/share/man/man5/bluetooth.hosts.5 (new)
1.1 +62 -0 src/share/man/man5/bluetooth.protocols.5 (new)
1.72 +2 -0 src/share/mk/bsd.libnames.mk
1.4 +1 -1 src/sys/modules/netgraph/bluetooth/bluetooth/Makefile
1.4 +1 -4 src/sys/modules/netgraph/bluetooth/bt3c/Makefile
1.4 +1 -3 src/sys/modules/netgraph/bluetooth/h4/Makefile
1.4 +1 -3 src/sys/modules/netgraph/bluetooth/hci/Makefile
1.4 +1 -3 src/sys/modules/netgraph/bluetooth/l2cap/Makefile
1.4 +1 -4 src/sys/modules/netgraph/bluetooth/socket/Makefile
1.4 +1 -4 src/sys/modules/netgraph/bluetooth/ubt/Makefile
1.2 +1 -4 src/sys/modules/netgraph/bluetooth/ubtbcmfw/Makefile
1.9 +1 -2 src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c
1.3 +1 -1 src/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c
1.5 +29 -18 src/sys/netgraph/bluetooth/hci/ng_hci_cmds.c
1.5 +16 -6 src/sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1.5 +69 -71 src/sys/netgraph/bluetooth/hci/ng_hci_misc.c
1.3 +5 -5 src/sys/netgraph/bluetooth/hci/ng_hci_misc.h
1.5 +43 -25 src/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
1.3 +40 -22 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c
1.5 +37 -52 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c
1.5 +72 -16 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
1.5 +115 -114 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
1.3 +7 -10 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.h
1.4 +2 -2 src/sys/netgraph/bluetooth/socket/ng_btsocket.c
1.9 +2 -2 src/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
1.8 +3 -3 src/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
1.7 +2 -2 src/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
1.3 +12 -3 src/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c
1.251 +2 -1 src/usr.bin/Makefile
1.3 +3 -1 src/usr.bin/bluetooth/Makefile
1.1 +4 -0 src/usr.bin/bluetooth/Makefile.inc (new)
1.1 +12 -0 src/usr.bin/bluetooth/bthost/Makefile (new)
1.1 +111 -0 src/usr.bin/bluetooth/bthost/bthost.1 (new)
1.1 +142 -0 src/usr.bin/bluetooth/bthost/bthost.c (new)
1.3 +6 -11 src/usr.bin/bluetooth/btsockstat/Makefile
1.5 +6 -2 src/usr.bin/bluetooth/btsockstat/btsockstat.1
1.3 +60 -75 src/usr.bin/bluetooth/btsockstat/btsockstat.c
1.2 +5 -8 src/usr.bin/bluetooth/rfcomm_sppd/Makefile
1.1 +266 -0 src/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sdp.c (new)
1.3 +8 -6 src/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.1
1.2 +26 -24 src/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.c
1.274 +1 -0 src/usr.sbin/Makefile
1.5 +12 -10 src/usr.sbin/bluetooth/Makefile
1.1 +4 -0 src/usr.sbin/bluetooth/Makefile.inc (new)
1.3 +3 -17 src/usr.sbin/bluetooth/bcmfw/Makefile
1.3 +12 -1 src/usr.sbin/bluetooth/bcmfw/bcmfw.8
1.3 +3 -6 src/usr.sbin/bluetooth/bt3cfw/Makefile
1.5 +1 -1 src/usr.sbin/bluetooth/bt3cfw/bt3cfw.8
1.3 +2 -2 src/usr.sbin/bluetooth/bt3cfw/bt3cfw.c
1.3 +6 -6 src/usr.sbin/bluetooth/hccontrol/Makefile
1.5 +11 -2 src/usr.sbin/bluetooth/hccontrol/hccontrol.8
1.3 +9 -9 src/usr.sbin/bluetooth/hccontrol/hccontrol.c
1.3 +2 -1 src/usr.sbin/bluetooth/hccontrol/hccontrol.h
1.3 +204 -40 src/usr.sbin/bluetooth/hccontrol/host_controller_baseband.c
1.3 +3 -7 src/usr.sbin/bluetooth/hccontrol/info.c
1.3 +22 -36 src/usr.sbin/bluetooth/hccontrol/link_control.c
1.3 +12 -17 src/usr.sbin/bluetooth/hccontrol/link_policy.c
1.3 +7 -21 src/usr.sbin/bluetooth/hccontrol/node.c
1.3 +2 -2 src/usr.sbin/bluetooth/hccontrol/send_recv.c
1.4 +2 -2 src/usr.sbin/bluetooth/hccontrol/status.c
1.3 +30 -2 src/usr.sbin/bluetooth/hccontrol/util.c
1.3 +7 -6 src/usr.sbin/bluetooth/hcsecd/Makefile
1.3 +42 -20 src/usr.sbin/bluetooth/hcsecd/hcsecd.8
1.2 +87 -63 src/usr.sbin/bluetooth/hcsecd/hcsecd.c
1.1 +129 -0 src/usr.sbin/bluetooth/hcsecd/hcsecd.conf.5 (new)
1.2 +10 -2 src/usr.sbin/bluetooth/hcsecd/hcsecd.h
1.2 +119 -26 src/usr.sbin/bluetooth/hcsecd/parser.y
1.3 +3 -8 src/usr.sbin/bluetooth/hcseriald/Makefile
1.5 +1 -1 src/usr.sbin/bluetooth/hcseriald/hcseriald.8
1.3 +2 -2 src/usr.sbin/bluetooth/hcseriald/hcseriald.c
1.3 +6 -6 src/usr.sbin/bluetooth/l2control/Makefile
1.3 +33 -17 src/usr.sbin/bluetooth/l2control/l2cap.c
1.5 +7 -2 src/usr.sbin/bluetooth/l2control/l2control.8
1.3 +20 -27 src/usr.sbin/bluetooth/l2control/l2control.c
1.3 +5 -5 src/usr.sbin/bluetooth/l2ping/Makefile
1.5 +1 -1 src/usr.sbin/bluetooth/l2ping/l2ping.8
1.3 +28 -50 src/usr.sbin/bluetooth/l2ping/l2ping.c
1.2 +8 -7 src/usr.sbin/bluetooth/rfcomm_pppd/Makefile
1.3 +20 -9 src/usr.sbin/bluetooth/rfcomm_pppd/rfcomm_pppd.8
1.2 +50 -28 src/usr.sbin/bluetooth/rfcomm_pppd/rfcomm_pppd.c
1.1 +12 -0 src/usr.sbin/bluetooth/sdpcontrol/Makefile (new)
1.1 +100 -0 src/usr.sbin/bluetooth/sdpcontrol/sdpcontrol.8 (new)
1.1 +197 -0 src/usr.sbin/bluetooth/sdpcontrol/sdpcontrol.c (new)
1.1 +49 -0 src/usr.sbin/bluetooth/sdpcontrol/sdpcontrol.h (new)
1.1 +707 -0 src/usr.sbin/bluetooth/sdpcontrol/search.c (new)
More information about the cvs-all
mailing list