the goal is to have an udp instance, and a tcp/443 one can handle connected and disconnected messages
12 lines
124 B
Go
12 lines
124 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
func (c *vpnSession) Log() error {
|
|
//TODO get asname & shit
|
|
log.Println(c)
|
|
return nil
|
|
}
|