cvs commit: src/share/man/man4 Makefile ng_bluetooth.4 ng_bt3c.4
ng_btsocket.4 ng_h4.4 ng_hci.4 ng_l2cap.4 ng_ubt.4 ubtbcmfw.4
src/sys/modules/netgraph/bluetooth/bluetooth
Makefile src/sys/modules/netgraph/bluetooth/bt3c Makefile ...
Julian Elischer
julian at FreeBSD.org
Sat May 10 14:44:44 PDT 2003
julian 2003/05/10 14:44:42 PDT
FreeBSD src repository
Modified files:
share/man/man4 Makefile ng_bluetooth.4 ng_bt3c.4
ng_btsocket.4 ng_h4.4 ng_hci.4 ng_l2cap.4
ng_ubt.4
sys/modules/netgraph/bluetooth Makefile
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/netgraph/bluetooth/common ng_bluetooth.c
sys/netgraph/bluetooth/drivers/bt3c ng_bt3c_pccard.c
ng_bt3c_var.h
sys/netgraph/bluetooth/drivers/h4 TODO ng_h4.c ng_h4_prse.h
ng_h4_var.h
sys/netgraph/bluetooth/drivers/ubt TODO ng_ubt.c ng_ubt_var.h
sys/netgraph/bluetooth/hci TODO ng_hci_cmds.c ng_hci_cmds.h
ng_hci_evnt.c ng_hci_evnt.h
ng_hci_main.c ng_hci_misc.c
ng_hci_misc.h ng_hci_prse.h
ng_hci_ulpi.c ng_hci_ulpi.h
ng_hci_var.h
sys/netgraph/bluetooth/include ng_bluetooth.h ng_bt3c.h
ng_btsocket.h
ng_btsocket_hci_raw.h
ng_btsocket_l2cap.h ng_h4.h
ng_hci.h ng_l2cap.h ng_ubt.h
sys/netgraph/bluetooth/l2cap TODO ng_l2cap_cmds.c
ng_l2cap_cmds.h ng_l2cap_evnt.c
ng_l2cap_evnt.h ng_l2cap_llpi.c
ng_l2cap_llpi.h ng_l2cap_main.c
ng_l2cap_misc.c ng_l2cap_misc.h
ng_l2cap_prse.h ng_l2cap_ulpi.c
ng_l2cap_ulpi.h ng_l2cap_var.h
sys/netgraph/bluetooth/socket TODO ng_btsocket.c
ng_btsocket_hci_raw.c
ng_btsocket_l2cap.c
ng_btsocket_l2cap_raw.c
usr.bin/bluetooth Makefile
usr.bin/bluetooth/btsockstat Makefile btsockstat.1
btsockstat.c
Added files:
share/man/man4 ubtbcmfw.4
sys/modules/netgraph/bluetooth/ubtbcmfw Makefile
sys/netgraph/bluetooth/drivers/ubtbcmfw ubtbcmfw.c
sys/netgraph/bluetooth/include ng_btsocket_rfcomm.h
sys/netgraph/bluetooth/socket ng_btsocket_rfcomm.c
usr.bin/bluetooth/rfcomm_sppd Makefile rfcomm_sppd.1
rfcomm_sppd.c
Log:
Part one of undating the bluetooth code to the newest version
Submitted by: Maksim Yevmenkin <m_evmenkin at yahoo.com>
Approved by: re@
Revision Changes Path
1.201 +1 -0 src/share/man/man4/Makefile
1.4 +48 -62 src/share/man/man4/ng_bluetooth.4
1.3 +41 -47 src/share/man/man4/ng_bt3c.4
1.4 +153 -92 src/share/man/man4/ng_btsocket.4
1.3 +26 -29 src/share/man/man4/ng_h4.4
1.4 +140 -172 src/share/man/man4/ng_hci.4
1.3 +162 -234 src/share/man/man4/ng_l2cap.4
1.3 +114 -29 src/share/man/man4/ng_ubt.4
1.1 +92 -0 src/share/man/man4/ubtbcmfw.4 (new)
1.2 +3 -1 src/sys/modules/netgraph/bluetooth/Makefile
1.3 +2 -2 src/sys/modules/netgraph/bluetooth/bluetooth/Makefile
1.3 +5 -4 src/sys/modules/netgraph/bluetooth/bt3c/Makefile
1.3 +4 -4 src/sys/modules/netgraph/bluetooth/h4/Makefile
1.3 +4 -4 src/sys/modules/netgraph/bluetooth/hci/Makefile
1.3 +4 -4 src/sys/modules/netgraph/bluetooth/l2cap/Makefile
1.3 +7 -5 src/sys/modules/netgraph/bluetooth/socket/Makefile
1.3 +6 -5 src/sys/modules/netgraph/bluetooth/ubt/Makefile
1.1 +17 -0 src/sys/modules/netgraph/bluetooth/ubtbcmfw/Makefile (new)
1.2 +8 -12 src/sys/netgraph/bluetooth/common/ng_bluetooth.c
1.4 +50 -43 src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_pccard.c
1.2 +1 -1 src/sys/netgraph/bluetooth/drivers/bt3c/ng_bt3c_var.h
1.2 +2 -2 src/sys/netgraph/bluetooth/drivers/h4/TODO
1.4 +2 -2 src/sys/netgraph/bluetooth/drivers/h4/ng_h4.c
1.2 +1 -1 src/sys/netgraph/bluetooth/drivers/h4/ng_h4_prse.h
1.2 +1 -1 src/sys/netgraph/bluetooth/drivers/h4/ng_h4_var.h
1.2 +2 -2 src/sys/netgraph/bluetooth/drivers/ubt/TODO
1.6 +1099 -552 src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c
1.2 +22 -12 src/sys/netgraph/bluetooth/drivers/ubt/ng_ubt_var.h
1.1 +571 -0 src/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c (new)
1.2 +5 -18 src/sys/netgraph/bluetooth/hci/TODO
1.4 +1 -1 src/sys/netgraph/bluetooth/hci/ng_hci_cmds.c
1.2 +1 -1 src/sys/netgraph/bluetooth/hci/ng_hci_cmds.h
1.4 +52 -5 src/sys/netgraph/bluetooth/hci/ng_hci_evnt.c
1.2 +1 -1 src/sys/netgraph/bluetooth/hci/ng_hci_evnt.h
1.2 +27 -2 src/sys/netgraph/bluetooth/hci/ng_hci_main.c
1.4 +1 -59 src/sys/netgraph/bluetooth/hci/ng_hci_misc.c
1.2 +1 -3 src/sys/netgraph/bluetooth/hci/ng_hci_misc.h
1.2 +15 -1 src/sys/netgraph/bluetooth/hci/ng_hci_prse.h
1.4 +19 -107 src/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c
1.2 +1 -2 src/sys/netgraph/bluetooth/hci/ng_hci_ulpi.h
1.2 +4 -5 src/sys/netgraph/bluetooth/hci/ng_hci_var.h
1.2 +3 -3 src/sys/netgraph/bluetooth/include/ng_bluetooth.h
1.2 +1 -1 src/sys/netgraph/bluetooth/include/ng_bt3c.h
1.2 +56 -36 src/sys/netgraph/bluetooth/include/ng_btsocket.h
1.2 +4 -2 src/sys/netgraph/bluetooth/include/ng_btsocket_hci_raw.h
1.2 +8 -2 src/sys/netgraph/bluetooth/include/ng_btsocket_l2cap.h
1.1 +337 -0 src/sys/netgraph/bluetooth/include/ng_btsocket_rfcomm.h (new)
1.2 +1 -1 src/sys/netgraph/bluetooth/include/ng_h4.h
1.2 +5 -1 src/sys/netgraph/bluetooth/include/ng_hci.h
1.2 +12 -5 src/sys/netgraph/bluetooth/include/ng_l2cap.h
1.2 +7 -21 src/sys/netgraph/bluetooth/include/ng_ubt.h
1.2 +1 -1 src/sys/netgraph/bluetooth/l2cap/TODO
1.2 +1 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c
1.4 +9 -5 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.h
1.4 +7 -4 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.c
1.2 +1 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_evnt.h
1.4 +53 -11 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.c
1.2 +13 -12 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_llpi.h
1.2 +27 -4 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_main.c
1.4 +119 -5 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.c
1.2 +7 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_misc.h
1.2 +15 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_prse.h
1.2 +1 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.c
1.2 +1 -1 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_ulpi.h
1.2 +6 -2 src/sys/netgraph/bluetooth/l2cap/ng_l2cap_var.h
1.2 +1 -1 src/sys/netgraph/bluetooth/socket/TODO
1.2 +45 -1 src/sys/netgraph/bluetooth/socket/ng_btsocket.c
1.7 +392 -143 src/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c
1.6 +285 -148 src/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c
1.5 +318 -230 src/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c
1.1 +3570 -0 src/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c (new)
1.2 +4 -1 src/usr.bin/bluetooth/Makefile
1.2 +4 -2 src/usr.bin/bluetooth/btsockstat/Makefile
1.3 +18 -17 src/usr.bin/bluetooth/btsockstat/btsockstat.1
1.2 +185 -11 src/usr.bin/bluetooth/btsockstat/btsockstat.c
1.1 +15 -0 src/usr.bin/bluetooth/rfcomm_sppd/Makefile (new)
1.1 +107 -0 src/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.1 (new)
1.1 +383 -0 src/usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.c (new)
More information about the cvs-src
mailing list