0c007be4bd
Squashed commit of the following: wireless/bluetooth: Some small changes that gets to a clean compile by just eliminating some incorrect implementations (still with a lot of warnings. The logic is still incomplete but now not so lethal. wireless/bluetooth: Restructuring: Connection interfaces should internal to wireless/bluetooth. include/nuttx/wireless/bt_conn.h removed and merged with wireless/bluetooth/bt_conn.h. Several fix to get closer to bt_netdev.c compiling. Need to design some not interfaces and use some existing interfaces to send and receiv packets. wireless/bluetooth: Some organization with some network device compile errors fixed. Still not even close to compiling. net/bluetooth: Fix numerous compile issues; Still open design issues with regard to the interface with the Bluetooth stack. wireless/bluetooth: Create bt_netdev.c with a crude copy of mac802154_netdev.c. Does not not even compile yet. include/nuttx/net: Add bluetooth.h. Content is not yet correct. net/netpackets: Add bluetooth.h. Update net/bluetooth to use new socket address definition. net/bluetooth: Some fixes for initial build. net/bluetooth: Add initial support for Bluetooth sockets. The initial cut is just the a clone of the IEEE 802.15.4 socket support with name changes. net/ieee802154: Fix some typos noted when cloning to create net/bluetooth.
50 lines
2.9 KiB
Plaintext
50 lines
2.9 KiB
Plaintext
README
|
|
======
|
|
|
|
Directory Structure
|
|
===================
|
|
|
|
nuttx/
|
|
|
|
|
`- net/
|
|
|
|
|
+- arp - Address resolution protocol (IPv4)
|
|
+- bluetooth - PF_BLUETOOTH socket interface
|
|
+- devif - Stack/device interface layer
|
|
+- icmp - Internet Control Message Protocol (IPv4)
|
|
+- icmpv6 - Internet Control Message Protocol (IPv6)
|
|
+- ieee802154 - PF_IEEE802154 socket interface
|
|
+- inet - PF_INET/PF_INET6 socket interface
|
|
+- ipforward - IP forwarding logic
|
|
+- local - Unix domain (local) sockets
|
|
+- loopback - Local loopback
|
|
+- neighbor - Neighbor Discovery Protocol (IPv6)
|
|
+- netdev - Socket network device interface
|
|
+- pkt - "Raw" packet socket support
|
|
+- sixlowpan - 6LoWPAN implementation
|
|
+- socket - BSD socket interface
|
|
+- route - Routing table support
|
|
+- tcp - Transmission Control Protocol
|
|
+- udp - User Datagram Protocol
|
|
+- usrsock - User socket API for user-space networking stack
|
|
`- utils - Miscellaneous utility functions
|
|
|
|
+-------------------------------------------------------------------++------------------------+
|
|
| Application layer || usrsock daemon |
|
|
+-------------------------------------------------------------------++------------------------+
|
|
+-------------------------------------------------------------------++----------------+ +-----+
|
|
| Socket layer (socket/) || /dev/usrsock | | |
|
|
+-------------------------------------------------------------------++----------------+ | |
|
|
+------------++--------------------------------------------------++-------------------+ | |
|
|
| Network || Protocol stacks (arp, ipv6, icmp, pkt, tcp, udp) || usrsock/ | | |
|
|
| Device |+--------------------------------------------------++-------------------+ | |
|
|
| Interface |+------------------------------------++---------------------------------+ | |
|
|
| (netdev/) || Network Device Interface (devif/) || Utilities | | |
|
|
+------------++------------------------------------++---------------------------------+ | |
|
|
+----------------------------------------------------------------+ | |
|
|
| Network Device Drivers | | HAL |
|
|
+----------------------------------------------------------------+ +-----+
|
|
+----------------------------------------------------------------+ +--------------------------+
|
|
| Networking Hardware | | Hardware TCP/IP Stack |
|
|
+----------------------------------------------------------------+ +--------------------------+
|