Dr. Mickey Lauer

Results 173 comments of Dr. Mickey Lauer
trafficstars

@rymanluk I'm afraid, I'm a bit out of my depth here. Finding out whether an allocated channel exists would mean I need to iterate over all active connections and all...

Ok, how about this one: ```diff diff --git a/nimble/host/include/host/ble_l2cap.h b/nimble/host/include/host/ble_l2cap.h index aef9682c..bcdd5c71 100644 --- a/nimble/host/include/host/ble_l2cap.h +++ b/nimble/host/include/host/ble_l2cap.h @@ -250,7 +250,7 @@ typedef int ble_l2cap_event_fn(struct ble_l2cap_event *event, void *arg); uint16_t ble_l2cap_get_conn_handle(struct...

It's still open, I didn't have time yet to do the pull request though. The code pasted should work though.

I don't think so. As far as I can see these examples are doing the forwarding "on their own". The bridge example does this in a higher level way basing...

I call `esp_netif_action_connected` right after starting the interface. When adding log output to `netif_recv_callback` and `l2_free` I see that these functions are called regularly: ``` D (136689) usb-netif: netif_recv_callback: 333...

```c bool p = true; esp_eth_ioctl(usb_netif, ETH_CMD_S_PROMISCUOUS, &p); ``` crashes. Perhaps I need a special way to do this on USB_NCM? ``` XXX setting USB netif to promiscuous mode D...

Since I'm not sure whether the problem is on the sending or the receiving side, I figured I try to trace the way of the `DHCP DISCOVER` packet through the...

In LWIP's `bridgeif.c`, it says: ```* - When adding a port netif, its input function is changed to call into the bridge.``` Could it be that this doesn't happen for...

@chegewara > Im not networking expert, actually i am pretty lame, but i spent few hours today trying to figure out if i can do it. My conclusion is that...

**Thanks a lot** @kostaond and also @chegewara ­– this is shaping up VERY nicely. Apart from some minor timing issues (_when_ is _which_ interface being connected), this works just fine....