Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-20 | add format strings implied by surplus arguments | Jonathan Gray | |
found via the clang static analyser | |||
2010-07-29 | sort pool.h into the list of includes alphabetically | Bret Lambert | |
pointed out by kettenis@, ok miod@ | |||
2010-07-29 | #include <sys/pool.h> directly, instead of relying on mbuf.h to inlcude it | Bret Lambert | |
ok miod@ tedu@ | |||
2010-07-02 | m_copyback can fail to allocate memory, but is a void fucntion so gymnastics | Bret Lambert | |
are required to detect that. Change the function to take a wait argument (used in nfs server, but M_NOWAIT everywhere else for now) and to return an error ok claudio@ henning@ krw@ | |||
2009-11-21 | User triggerable KASSERT()s and NULL dereferences in netbt setsockopt()s, | Philip Guenthe | |
found by Clement LECIGNE, localhost DoS everywhere. Also, don't leak the mbuf when the wrong level is used. ok claudio@, "just commit" deraadt@ | |||
2009-01-14 | Accoring to the C standard uint16_t can't be the type of the ``last'' argument | Alexander Yurchenko | |
of va_start() since it's not compatible with the type that results after application of the default argument promotion. So change it to uint32_t. ok miod@ | |||
2008-11-25 | unbreak build on sgi (thanks jasper) | Uwe Stuehler | |
2008-11-24 | hopefully that unbreaks macppc; reported by todd and mk | Uwe Stuehler | |
2008-11-22 | Stop a possible race in hci_enable() | Uwe Stuehler | |
2008-11-22 | Sync bluetooth with NetBSD | Uwe Stuehler | |
2008-09-10 | Convert timeout_add() calls using multiples of hz to timeout_add_sec() | Bret Lambert | |
Really just the low-hanging fruit of (hopefully) forthcoming timeout conversions. ok art@, krw@ | |||
2008-06-08 | timeout_del() removes the triggered flag so check if the timeout triggered | Claudio Jeker | |
before doing the timeout_del() -- which is actually not needed as triggered timeouts are already removed. While there fix a obvious use after free issue. with mk@ OK canacar@ | |||
2008-05-27 | bring netbt's usrreqs up to speed on the usrreq changes. | Thordur I. Bjornsson | |
allows it too compile again. pointed out by mk@ and deraadt@ | |||
2008-02-24 | Handle "QOS" L2CAP configuration request option, enabling L2CAP | Uwe Stuehler | |
connections to Sony Ericsson W880i mobile phones | |||
2008-02-24 | Sync sys/netbt with NetBSD | Uwe Stuehler | |
ok deraadt@ | |||
2007-10-01 | Last of the really easy bzero() -> M_ZERO. Use 'p = malloc(sizeof(*p) ...' | Kenneth R Westerback | |
where obvious. | |||
2007-09-17 | Only the most obvious bzero() -> M_ZERO changes. No cast changes, no | Kenneth R Westerback | |
MALLOC/FREE, etc. Just adding M_ZERO to malloc() and deleting an immediately adjacent bzero(). | |||
2007-07-22 | spacing, chop some of the more obscenely long lines. | Gordon Willem Klok | |
2007-06-26 | Fix "the the"s. ok miod@. | Tom Cosgrove | |
2007-06-24 | Remove some unused leftover code; original request from jasper@ | Uwe Stuehler | |
2007-06-19 | Abort all pending ACL connections when we get an HCI command parameter | Uwe Stuehler | |
error in response to a HCI_CMD_CREATE_CON command instead of waiting that the user aborts due to boredom. Unfortunately, the command status event does not include a hint to tells us which connection failed. | |||
2007-06-06 | No need to call hci_enable() when we can do "btconfig <dev> up"; ok gwk | Uwe Stuehler | |
2007-06-06 | Do not dereference a garbage pointer in hci_acl_send() | Uwe Stuehler | |
testing ckuethe | |||
2007-06-02 | Set a flag in hci_usrreq() to allow priviledged operations | Uwe Stuehler | |
2007-06-01 | Set BTF_UP before hci_enable() to make hci_unit_lookup() work; ok gwk | Uwe Stuehler | |
2007-06-01 | workq_add_task() flags argument position changed | Uwe Stuehler | |
2007-06-01 | set debug level to 0 | Uwe Stuehler | |
2007-06-01 | complete the sys/netbt import and adopt some more code to our interfaces | Uwe Stuehler | |
2007-05-31 | Enable packet flow between HCI driver and controller | Uwe Stuehler | |
- not all platforms have generic sofintr support, use schednetisr() - enable HCI driver at attach time (for development, since we have no userland tools yet) | |||
2007-05-30 | Unbreak the tree for gwk | Uwe Stuehler | |
2007-05-30 | Import parts of the NetBSD bluetooth stack; ok gwk, and grange on removal | Uwe Stuehler | |
of the existing code | |||
2007-05-26 | one extern seems to be better than 20 for ifqmaxlen; ok krw | Jason Wright | |
2006-12-01 | spelling: queue, not qeueue | Camiel Dobbelaar | |
2006-03-04 | With the exception of two other small uncommited diffs this moves | Brad Smith | |
the remainder of the network stack from splimp to splnet. ok miod@ | |||
2005-07-15 | From FreeBSD netgraph/bluetooth/include/ng_hci.h rev. 1.5: | Alexander Yurchenko | |
Rename 'class' field to 'uclass' in the ng_hci_inquiry_response structure. class is a reserved word in C++ Submitted by: Markus Brueffer < markus AT brueffer DOT de > | |||
2005-01-17 | cleanup rcsids | Michael Shalayeff | |
2005-01-14 | Restrict AF_BLUETOOTH sockets to root for now. Discussed with theo and | Alexander Yurchenko | |
markus. | |||
2005-01-14 | First step in Bluetooth protocol stack support. | Alexander Yurchenko | |
The code is adopted from the FreeBSD netgraph-based Bluetooth implementation by Maksim Yevmenkin <m_evmenkin@yahoo.com> but all netgraph glue was replaced with usual BSD network stack hooks. This is a work in progress. Only HCI layer works for now, L2CAP and RFCOMM are on the way. Help in testing from many, ok markus@. |