| 370 | |
| 371 | |
| 372 | class L2CAP_ConnReq(Packet): |
| 373 | name = "L2CAP Conn Req" |
| 374 | fields_desc = [LEShortEnumField("psm", 0, {1: "SDP", |
| 375 | 3: "RFCOMM", |
| 376 | 5: "TCS-BIN", |
| 377 | 7: "TCS-BIN-CORDLESS", |
| 378 | 15: "BNEP", |
| 379 | 17: "HID-Control", |
| 380 | 19: "HID-Interrupt", |
| 381 | 21: "UPnP", |
| 382 | 23: "AVCTP-Control", |
| 383 | 25: "AVDTP", |
| 384 | 27: "AVCTP-Browsing", |
| 385 | 29: "UDI_C-Plane", |
| 386 | 31: "ATT", |
| 387 | 33: "3DSP", |
| 388 | 35: "IPSP", |
| 389 | 37: "OTS"}), |
| 390 | LEShortField("scid", 0), |
| 391 | ] |
| 392 | |
| 393 | |
| 394 | class L2CAP_ConnResp(Packet): |
nothing calls this directly
no test coverage detected
searching dependent graphs…