Files
openvpn-mgt/logs.go
Xavier Henner 44cfdea6ed should work with multiple openvpn servers
the goal is to have an udp instance, and a tcp/443 one

can handle connected and disconnected messages
2019-07-10 15:47:55 +02:00

12 lines
124 B
Go

package main
import (
"log"
)
func (c *vpnSession) Log() error {
//TODO get asname & shit
log.Println(c)
return nil
}