This website requires JavaScript.
Explore
Help
Register
Sign In
admin
/
gluetun
Watch
1
Star
0
Fork
0
You've already forked gluetun
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Files
b51aa0c6b9e7d9e8886a8a450a6f9819c026ae79
gluetun
/
internal
/
tun
/
tun.go
8 lines
67 B
Go
Raw
Normal View
History
Unescape
Escape
Maint: tun package to handle tun device operations - Moved from openvpn package to tun package - TUN check verifies Rdev value - TUN create - Inject as interface to main function - Add integration test - Clearer log message for end users if tun device does not exist - Remove unix package (unneeded for tests) - Remove tun file opening at the end of tun file creation - Do not mock unix.Mkdev (no OS operation) - Remove Tun operations from OpenVPN configurator
2021-08-18 15:31:08 +00:00
package
tun
chore(tun): not linux or not darwin tagged files
2023-05-29 07:32:17 +00:00
type
Tun
struct
{
}
Maint: tun package to handle tun device operations - Moved from openvpn package to tun package - TUN check verifies Rdev value - TUN create - Inject as interface to main function - Add integration test - Clearer log message for end users if tun device does not exist - Remove unix package (unneeded for tests) - Remove tun file opening at the end of tun file creation - Do not mock unix.Mkdev (no OS operation) - Remove Tun operations from OpenVPN configurator
2021-08-18 15:31:08 +00:00
func
New
(
)
*
Tun
{
chore(tun): not linux or not darwin tagged files
2023-05-29 07:32:17 +00:00
return
&
Tun
{
}
Maint: tun package to handle tun device operations - Moved from openvpn package to tun package - TUN check verifies Rdev value - TUN create - Inject as interface to main function - Add integration test - Clearer log message for end users if tun device does not exist - Remove unix package (unneeded for tests) - Remove tun file opening at the end of tun file creation - Do not mock unix.Mkdev (no OS operation) - Remove Tun operations from OpenVPN configurator
2021-08-18 15:31:08 +00:00
}
Reference in New Issue
Copy Permalink