windows-ipv6管理
Friday, June 28, 2024 在 windows
Categories:
windows-ipv6管理 windows-ipv6 管理 # 查看ipv6地址, 过滤locallink地址, 过滤Loopback地址 Get-NetIPAddress -AddressFamily IPv6 | Where-Object {$_.IPAddress -notlike "fe80*" -and $_.IPAddress -notlike "::1"} | Format-Table -AutoSize # 查看ipv6 …
window-message
Friday, June 28, 2024 在 windows
Categories:
window-message windows-message All windows messages as C# enum (github.com) List Of Windows Messages - WineHQ Wiki pinvoke.net: WM (Constants) pinvoke.net: WindowsMessages (Enums) Window Notifications
wsl
Friday, June 28, 2024 在 environment
Categories:
配置 wsl 配置 wsl 远程访问 ssh 配置 wsl 远程访问 ssh wsl sudo apt install openssh-server sudo nano /etc/ssh/sshd_config /etc/ssh/sshd_config ...STUFF ABOVE THIS... Port 2222 #AddressFamily any ListenAddress 0.0.0.0 #ListenAddress :: ...STUFF BELOW THIS... windows …
简易server-client代码
Friday, June 28, 2024 在 测试工具
Categories:
简易server-client代码 简易 server-client 代码 windows Windows Complete Winsock Client Code Complete Winsock Server Code Linux Linux Socket Programming Simple client/server application in C