-
Notifications
You must be signed in to change notification settings - Fork 546
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: enable "WG over GRPC" testing in siderolink agent tests
- Loading branch information
Showing
14 changed files
with
230 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
package cluster | ||
|
||
import ( | ||
"net/netip" | ||
|
||
"github.com/siderolabs/siderolink/pkg/wireguard" | ||
) | ||
|
||
func generateRandomNodeAddr(prefix netip.Prefix) (netip.Prefix, error) { | ||
return wireguard.GenerateRandomNodeAddr(prefix) | ||
} | ||
|
||
func networkPrefix(prefix string) (netip.Prefix, error) { | ||
return wireguard.NetworkPrefix(prefix), nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
//go:build !linux | ||
|
||
package cluster | ||
|
||
import ( | ||
"errors" | ||
"net/netip" | ||
) | ||
|
||
func generateRandomNodeAddr(prefix netip.Prefix) (netip.Prefix, error) { | ||
return netip.Prefix{}, nil | ||
} | ||
|
||
func networkPrefix(prefix string) (netip.Prefix, error) { | ||
return netip.Prefix{}, errors.New("unsupported platform") | ||
} |
Oops, something went wrong.