1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| tree -d -L 1 ├── all ├── bom ├── buffer (Core netty定制的buffer) ├── codec (Protocol Support) ├── codec-dns (Protocol Support) ├── codec-haproxy (Protocol Support) ├── codec-http (Protocol Support) ├── codec-http2 (Protocol Support) ├── codec-memcache (Protocol Support) ├── codec-mqtt (Protocol Support 物联网) ├── codec-redis (Protocol Support ) ├── codec-smtp (Protocol Support 邮件) ├── codec-socks (Protocol Support) ├── codec-stomp (Protocol Support ws) ├── codec-xml (Protocol Support) ├── common (Core) ├── dev-tools ├── docker ├── example (抄代码的地方) ├── handler (Protocol Support) ├── handler-proxy (Protocol Support) ├── license ├── microbench (测试用的) ├── resolver (Core) ├── resolver-dns (Core) ├── tarball ├── target ├── testsuite ├── testsuite-autobahn ├── testsuite-http2 ├── testsuite-osgi ├── testsuite-shading ├── transport (Transport Services) ├── transport-native-epoll (Transport Servicesnative omitted - reserved keyword in Java) ├── transport-native-kqueue (Transport Servicesnative omitted - reserved keyword in Java) ├── transport-native-unix-common Transport Services native omitted - reserved keyword in Java) ├── transport-native-unix-common-tests ├── transport-rxtx (Transport Services 串口编程 作废) ├── transport-sctp (Transport Services ) └── transport-udt (Transport Services 作废)
|