fixed function calls
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Jake Hillion 2021-01-23 17:43:02 +00:00
parent 0b4c26005f
commit 0849ed1b7c
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ type InitiatedFlow struct {
}
func (f *InitiatedFlow) String() string {
return fmt.Sprintf("TcpOutbound{%v -> %v}", f.Local, f.Remote)
return fmt.Sprintf("TcpOutbound{%v -> %v}", f.Local(), f.Remote)
}
type Flow struct {

View File

@ -34,7 +34,7 @@ type InitiatedFlow struct {
}
func (f *InitiatedFlow) String() string {
return fmt.Sprintf("UdpOutbound{%v -> %v}", f.Local, f.Remote)
return fmt.Sprintf("UdpOutbound{%v -> %v}", f.Local(), f.Remote)
}
type Flow struct {