19 lines
296 B
Go
19 lines
296 B
Go
|
package ftp
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
cnsm "git.loafle.net/commons_go/network_service_matcher"
|
||
|
)
|
||
|
|
||
|
func TestStartCheckFTPS(t *testing.T) {
|
||
|
info := cnsm.NewMatchInfo("192.168.1.202", 80)
|
||
|
|
||
|
isFtps, err := StartCheckFTPS(info)
|
||
|
fmt.Println("Result : ", isFtps)
|
||
|
fmt.Println("Error : ", err)
|
||
|
}
|
||
|
|
||
|
|