Resolves the default L2 destination address when IP is used.
(l2, l3)
| 1375 | |
| 1376 | |
| 1377 | def inet_register_l3(l2, l3): |
| 1378 | """ |
| 1379 | Resolves the default L2 destination address when IP is used. |
| 1380 | """ |
| 1381 | return getmacbyip(l3.dst) |
| 1382 | |
| 1383 | |
| 1384 | conf.neighbor.register_l3(Ether, IP, inet_register_l3) |
nothing calls this directly
no test coverage detected
searching dependent graphs…