Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for multipeer #79

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
af5864e
timer: refactor timers implementation
lstipakov Aug 27, 2024
d31f0ee
More robust way to get a version info
lstipakov Aug 9, 2024
f7877d2
Implement DATA_V3 protocol features
lstipakov Aug 14, 2024
4690799
Add OVPN_IOCTL_SET_MODE
lstipakov Sep 5, 2024
1094495
Replace OvpnDelPeer with OvpnStopVPN
lstipakov Sep 11, 2024
8bc2213
GHA: update upload-artifacts to v4
lstipakov Sep 12, 2024
9010a30
Driver.cpp: Add some mode checks to OvpnEvtIoDeviceControl
lstipakov Sep 12, 2024
83d2ad7
Add OVPN_MP_START_VPN ioctl
lstipakov Sep 16, 2024
71e0a20
ovpn-dco-cli GUI: initial commit
lstipakov Sep 17, 2024
72fc278
Account for SOCKADDR in control packets
lstipakov Sep 18, 2024
c0882ee
gui: account for SOCKADDR in control packets
lstipakov Sep 18, 2024
55cdbff
buffers: fix max headroom size
lstipakov Sep 25, 2024
3486c5b
buffers: RX_BUFFER refactor and buffer-manipulation functions
lstipakov Sep 26, 2024
3c91912
Implement OVPN_IOCTL_MP_NEW_PEER
lstipakov Oct 8, 2024
cd610da
gui: implement OVPN_IOCTL_NEW_KEY
lstipakov Oct 9, 2024
515d133
peer.cpp: make PeerNewKey use the actual peer
lstipakov Oct 9, 2024
b146d94
driver.cpp: enable NEW_KEY(_V2) ioctls in MP mode
lstipakov Oct 10, 2024
669fd0d
txqueue: pass SOCKADDR* to OvpnSocketSend
lstipakov Oct 10, 2024
c55ce38
gui: make "New Key" work for both P2P and MP
lstipakov Oct 10, 2024
6dfc04a
txqueue.cpp: send packets to actual peer
lstipakov Oct 11, 2024
70f7155
multipeer: switch to AVL trees
lstipakov Oct 15, 2024
b737eb9
multipeer: support for SET_PEER
lstipakov Oct 18, 2024
5a38804
gui: support fot (MP_)SET_PEER
lstipakov Oct 18, 2024
d1c9a6b
Implement userspace notifications
lstipakov Oct 22, 2024
ad8c81d
gui: support for notifications ioctl
lstipakov Oct 22, 2024
3b74322
gui: add a button to subscribe for notifications
lstipakov Oct 22, 2024
c0a1dcc
multipeer: delete expired peer
lstipakov Oct 22, 2024
66bda50
Improve locking and peer lifetime management
lstipakov Oct 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
Copy-Item -Path ..\${{ matrix.arch }}\${{ matrix.build_conf }}\ovpn-dco\* -Destination dist\${{ matrix.arch }}\win11\ -Recurse
.\build.ps1 -Arch ${{ matrix.arch }} -Wix ..\wix

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ovpn-dco_${{ matrix.arch }}_${{ matrix.build_conf }}
path: |
Expand Down
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Thumbs.db
Debug
Release
x64
x86
Win32
sdv
ARM64
Expand All @@ -72,3 +73,9 @@ smvstats.txt
*.cab

*.vcxproj.user

**/out
**/build
**/.vscode
**/signed
msm/tmp
Loading
Loading