summaryrefslogtreecommitdiffstats
path: root/usr.sbin/bluetooth
Commit message (Collapse)AuthorAgeFilesLines
* Allow search for any UUID entered by user.emax2007-11-041-3/+0
| | | | MFC after: 3 days
* Fixed "make checkdpadd" (missing library dependencies).ru2007-10-011-1/+1
| | | | Approved by: re (kensmith)
* Add `accept dns' to rfcomm-server examplepav2007-05-131-0/+1
| | | | | | | PR: docs/111320 Submitted by: James Flemer <jflemer@alum.rpi.edu> No objection: emax MFC after: 1 week
* Check that the length of the received message is at least as big as a PDUemax2007-02-231-1/+2
| | | | | | | before we use pdu->len. Submitted by: Iain Hibbert MFC after: 3 days
* Do not mark Bluetooth HID device as a "potential keyboard" if its descriptoremax2006-11-271-1/+1
| | | | | | | | | has items with CONSUMER page. For now only check for items with KEYBOARD page. This should prevent bthidd(8) from allocating vkbd(4) keyboard for Microsoft Bluetooth Explorer mouse. Reported by: Eric Anderson MFC after: 3 days
* - Grammar fixesmarkus2006-11-131-56/+74
| | | | | | | | | | | | - Reword some sentences - Use .Cm for arguments - s/CAVEAT/CAVEATS/ Based on PR: docs/78174 Submitted by: Jeremy Chadwick <freebsd@jdc.parodius.com> Reviewed by: brueffer Approved by: emax (mentor) MFC after: 3 days
* Properly htole16() PSM in sockaddr_l2capemax2006-11-021-3/+3
| | | | MFC after: 3 days
* - Add a 'verbose' switch -vmarkus2006-10-313-2/+17
| | | | | | | | - Only dump items that are being used for padding when being verbose. This brings bthidcontrol in line with the behaviour of usbhidctl(1). - Update the manpage accordingly Approved by: emax
* - Grammar and typo fixesmarkus2006-10-101-12/+11
| | | | | | | | - Rewording of some sentences Reviewed by: brueffer Approved by: emax (mentor) MFC after: 3 days
* Fix a typo introduced in the last commit: WWW Refresh is 0x227, not 0227markus2006-10-091-1/+1
| | | | | Approved by: emax (mentor) MFC after: 1 day
* Pacify new GCC4 warnings.emax2006-09-213-4/+4
| | | | | Submitted by: kan MFC after: 1 week
* Get rid of extra const to pacify new GCC4 warnings.emax2006-09-212-30/+30
| | | | | Submitted by: kan MFC after: 1 week
* Use socklen_t instead of int32_t where appropriate to pacify new GCC4emax2006-09-215-7/+12
| | | | | | | warnings. Submitted by: kan MFC after: 1 week
* Temporarily put ugly workaround in place to make sparc64 build happy.emax2006-09-081-12/+12
| | | | panther is down at the moment, so better fix will follow later.
* Update bthidd(8) code and hook it up to the build.emax2006-09-0714-462/+642
| | | | | | | | | | bthidd(8) now was integrated with vkbd(4) and supports multiple keyboards via vkbd(4)/kbdmux(4). The code was tested with Apple Bluetooth keyboard and SE k700i cell phone (remote control feature). MFC after: 1 month
* - Only print a clarifying message about which HCI node has been used if theremarkus2006-06-021-4/+6
| | | | | | | | is more than one HCI node present - Use errx(3) instead of err(3) if there is no HCI node present as errno is 0 in this case and the resulting error message wouldn't make much sense Approved by: emax (mentor)
* - Document the new Read_Node_List command, autodetection of HCI nodes andmarkus2006-05-221-8/+9
| | | | | | | | | that the '-n' parameter is now optional - Grammar fixes Reviewed by: emax Approved by: emax MFC after: 1 week
* - Add HCI node autodetection. As a consequence of this, make the '-n'markus2006-05-223-7/+89
| | | | | | | | | | parameter optional. - Add Read_Node_List command which prints a list of available HCI nodes, their Netgraph IDs and connected hooks Reviewed by: emax Approved by: emax MFC after: 1 week
* Fix formatting. Add missing break;emax2006-05-141-2/+3
| | | | | Submitted by: Iain Hibbert MFC after: 3 days
* Properly map mouse buttonsemax2006-03-211-1/+4
| | | | | | PR: bin/94577 Submitted by: Krzysztof Jedruczyk < beaker at hot dot pl > MFC after: 3 days
* Properly convert L2CAP PSM values in sockaddr_l2cap to LE16 byte order.emax2006-03-163-4/+4
| | | | | Noticed by: Iain Hibbert < plunky at rya-online dot net > MFC after: 3 days
* Style: NO_MAN doesn't need any value.ru2006-03-151-1/+1
|
* Teach bthidd(8) to reload its config when SIGHUP is received.emax2006-03-141-3/+27
| | | | | Submitted by: Iain Hibbert < plunky at rya-online dot net > MFC after: 3 days
* Fix typoemax2006-03-131-1/+1
| | | | | Submitted by: Iain Hibbert < plunky at rya-online dot net > MFC after: 3 days
* - Use official version strings for LMP and HCI version reporting and addmarkus2006-02-234-7/+42
| | | | | | | | version strings up to Bluetooth 2.0 - Update manufacturer list Approved by: emax MFC after: 3 days
* Fix scancode translation tablemarkus2006-02-201-2/+3
| | | | | Approved by: emax MFC after: 3 days
* - Grammar fixesmarkus2006-02-111-21/+21
| | | | | | | - Reword one sentence Approved by: brueffer MFC after: 3 days
* - Fix attribute id of HIDBatteryPowermarkus2006-02-101-5/+5
| | | | | | - Fix two typos in comments Approved by: emax
* Fix typo in rfcomm_pppd(8) man page.emax2005-12-121-1/+1
| | | | | Noticed by: Ronald Klop MFC after: 1 day
* Teach sdpd(8) to check peer's credentials before accepting request toemax2005-12-066-9/+55
| | | | | | | | register, remove or change services in the local database. For now only accept the request if the peer has effective user ID the same as 'root' user ID. MFC after: 1 week
* Fix typo in usage.emax2005-09-011-1/+1
| | | | | Submitted by: Jonatan B < onatan at gmail dot com > MFC after: 3 days
* Fix all the spelling mistakes I could find in the man pages for wordskeramida2005-07-312-5/+5
| | | | | | | | that have at least 3 characters. MFC after: 1 week Thanks to: Music band ``Chingon'' for keeping me company while searching for these.
* - Grammar fixesmarkus2005-07-091-12/+12
| | | | | | | - s/spdcontrol/sdpcontrol/ Approved by: re (hrs, rwatson), brueffer MFC after: 3 days
* Do not tread 128-bit UUID as int128. Provide separate macros to get/putemax2005-05-271-27/+36
| | | | | | 128-bit UUID libsdp(3). Fix 128-bit UUID printing in sdpcontrol(8). MFC after: 3 days
* Fix problem with session termination. bthidd(8) maintains two L2CAPemax2005-05-182-3/+4
| | | | | | | | | | | | | | | | connections to Bluetooth HID device. As soon as Bluetooth HID device is powered off (or goes out of RF range) the stack will terminate both connections. File descriptors for both connections will become active on next select(2) call. Because bthidd(8) processes file descriptors in order, it will detect descriptor for one of the closed connections first and kill the session. However, there is still a second (active) descriptor that used to point to the same session. bthidd(8) used to assert() if it cant find session by file descriptor, which was wrong. While I'm here fix a couple of typos in parser.y Reported by: Eric Anderson anderson AT centtech DOT com MFC after: 3 days
* Let bsd.prog.mk set SRCS and MAN to their default values.ru2005-01-284-4/+0
|
* Sort sections.ru2005-01-188-26/+26
|
* Added the EXIT STATUS section where appropriate.ru2005-01-178-8/+8
|
* Fix typo %d -> %xemax2005-01-121-1/+1
| | | | | | | | | That should fix the problem with invalid PSM returned from bthidcontrol. Pointy hat goes to me. PR: misc/76107 Submitted by: Hiroyuki Aizu < aizu at navi dot org > MFC after: 1 day
* Scheduled mdoc(7) sweep.ru2005-01-112-10/+11
|
* Teach sdpd(8) about 32-bit and 128-bit uuid's.emax2005-01-055-13/+162
| | | | MFC after: 3 days
* Rename 'class' field to 'uclass' in the ng_hci_inquiry_response structure.emax2005-01-041-1/+1
| | | | | | | class is a reserved word in C++ Submitted by: Markus Brueffer < markus AT brueffer DOT de > MFC after: 3 days
* Start the dreaded NOFOO -> NO_FOO conversion.ru2004-12-211-1/+1
| | | | OK'ed by: core
* Check in updated bthidd(8). This is still work in progress.emax2004-11-189-48/+874
|
* Serial devices now called /dev/cuadXX not /dev/cuaaXXemax2004-11-022-2/+2
|
* For variables that are only checked with defined(), don't provideru2004-10-241-1/+1
| | | | any fake value.
* Add missing #includeemax2004-09-142-1/+2
| | | | | | | | Bump WARNS level to 2 PR: bin/71668 Submitted by: Dan Lukes <dan@obluda.cz> MFC after: 3 days
* Update links to the bluez-firmware packageemax2004-08-111-4/+4
| | | | Update md5 hash
* Introduce ng_hci_inquiry_response structure and use it in the hccontrol(8)emax2004-08-101-8/+1
|
* - One can use both BD_ADDR or name to specify address of the Bluetooth device.emax2004-08-0510-30/+47
| | | | | | | | Update man pages to document this fact. - Update usage messages - Change u_intXXX to uintXXX
OpenPOWER on IntegriCloud