There are a few functions in peach-network which use a hardcoded networking interface identifier. These functions should rather take iface as an argument; this allows greater flexibility in the case that the wireless interface is not named wlan0.
The implicated functions (src/network.rs):
check_iface() add() activate_client()
There are a few functions in `peach-network` which use a hardcoded networking interface identifier. These functions should rather take `iface` as an argument; this allows greater flexibility in the case that the wireless interface is not named `wlan0`.
The implicated functions (`src/network.rs`):
`check_iface()`
`add()`
`activate_client()`
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
There are a few functions in
peach-networkwhich use a hardcoded networking interface identifier. These functions should rather takeifaceas an argument; this allows greater flexibility in the case that the wireless interface is not namedwlan0.The implicated functions (
src/network.rs):check_iface()add()activate_client()Implemented in PR#47.