part of #288. separate from #302 which tracks mdbook guide pages — this is about inline rustdoc comments that still say "wireguard only" or have wireguard-only examples even though openvpn is now supported.
locations
core/vpn.rs module header (line 8): "Currently supports: WireGuard connections"
core/vpn.rs various function doc comments still say "WireGuard connection" instead of "VPN connection"
network_manager.rs connect_vpn (line 273): "Currently supports WireGuard VPN connections" + wireguard-only example
network_manager.rs list_vpn_connections (line 343): "recognized types (currently WireGuard)"
api/builders/vpn.rs module doc (line 6): "Currently supports: WireGuard"
lib.rs quick start (line 35): only shows wireguard example, no openvpn
lib.rs models doc (line 91): "VpnType - Supported VPN types (WireGuard, etc.)" — should mention openvpn
core/vpn.rs stale variable name active_wg_map (line 319) — should be active_vpn_map or similar
changes
update all these doc comments to mention openvpn support alongside wireguard. add an openvpn example to connect_vpn docs. rename active_wg_map to active_vpn_map.
part of #288. separate from #302 which tracks mdbook guide pages — this is about inline rustdoc comments that still say "wireguard only" or have wireguard-only examples even though openvpn is now supported.
locations
core/vpn.rsmodule header (line 8): "Currently supports: WireGuard connections"core/vpn.rsvarious function doc comments still say "WireGuard connection" instead of "VPN connection"network_manager.rsconnect_vpn(line 273): "Currently supports WireGuard VPN connections" + wireguard-only examplenetwork_manager.rslist_vpn_connections(line 343): "recognized types (currently WireGuard)"api/builders/vpn.rsmodule doc (line 6): "Currently supports: WireGuard"lib.rsquick start (line 35): only shows wireguard example, no openvpnlib.rsmodels doc (line 91): "VpnType - Supported VPN types (WireGuard, etc.)" — should mention openvpncore/vpn.rsstale variable nameactive_wg_map(line 319) — should beactive_vpn_mapor similarchanges
update all these doc comments to mention openvpn support alongside wireguard. add an openvpn example to
connect_vpndocs. renameactive_wg_maptoactive_vpn_map.