-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
49 lines (44 loc) · 1.34 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package main
import (
"flag"
"log"
. "goftp.io/server"
)
var (
hostname string
port int
factory = new(HookDriverFactory)
auth = new(SimpleAuth)
certFile string
keyFile string
explicitFTPS bool
)
func init() {
flag.StringVar(&hostname, "hostname", "", "FTP listen hostname")
flag.IntVar(&port, "port", 0, "FTP listen port")
flag.StringVar(&certFile, "tls-cert-file", "", "TLS Certificate file")
flag.StringVar(&keyFile, "tls-key-file", "", "TLS Key file")
flag.BoolVar(&explicitFTPS, "tls-explicit", false, "Explicit FTPS")
flag.StringVar(&auth.Name, "username", "user", "Username")
flag.StringVar(&auth.Password, "password", "pass", "Password")
flag.StringVar(&factory.Workdir, "workdir", "", "Work directory")
flag.StringVar(&factory.ReadHook, "on-read", "", "Read operation local hook program")
flag.StringVar(&factory.WriteHook, "on-write", "", "Write operation local hook program")
flag.Parse()
}
func main() {
serve := NewServer(&ServerOpts{
Name: "FTP Hook Service",
Auth: auth,
Hostname: hostname,
Port: port,
TLS: certFile != "" && keyFile != "",
CertFile: certFile,
KeyFile: keyFile,
ExplicitFTPS: explicitFTPS,
Factory: factory,
})
if err := serve.ListenAndServe(); err != nil {
log.Fatal("Error starting server:", err)
}
}