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

Windows MTU fix and wg/win version update #896

Merged
merged 7 commits into from
May 25, 2023
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
revert log level
  • Loading branch information
mlsmaycon committed May 25, 2023
commit 2108de12797a716d3af5bb07d62b609f3857ede0
2 changes: 1 addition & 1 deletion iface/tun_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (c *tunDevice) createWithUserspace() (NetInterface, error) {
return nil, err
}
// We need to create a wireguard-go device and listen to configuration requests
tunDev := device.NewDevice(tunIface, c.iceBind, device.NewLogger(device.LogLevelVerbose, "[netbird] "))
tunDev := device.NewDevice(tunIface, c.iceBind, device.NewLogger(device.LogLevelError, "[netbird] "))
err = tunDev.Up()
if err != nil {
_ = tunIface.Close()
Expand Down