forked from hujun-open/rclip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rclip.go
54 lines (50 loc) · 1.74 KB
/
rclip.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
50
51
52
53
54
// rclip
package main
import (
"flag"
"fmt"
"os"
"path/filepath"
"rclip/common"
"rclip/receiver"
"rclip/reflector"
"rclip/sender"
)
func main() {
var ver = 1.1
version_str := fmt.Sprintf("remote clipboard, version %v", ver)
fmt.Println(version_str)
role := flag.String("role", "rcv", "specify the role, rcv/refl/sender") //refl will accept text from sender, and forward it to rcv
send_port := flag.Uint("send_port", 8890, "specify the port for sender on reflector")
rcv_port := flag.Uint("rcv_port", 8891, "specify the port for receiver on reflector")
refl_ip := flag.String("refl_ip", "", "reflector listening ip address")
loose_san_check := flag.Bool("loose", false, "use hard coded address for reflector certificate SAN check")
flag.Parse()
conf_dir := common.GetConfDir()
switch *role {
case "refl":
refl, err := reflector.NewReflector(filepath.Join(conf_dir, "ca_cert"), filepath.Join(conf_dir, "refl_cert"), filepath.Join(conf_dir, "refl_key"), *refl_ip, int(*send_port), int(*rcv_port))
if err != nil {
common.ErrLog.Println(err)
return
}
refl.Start()
case "rcv":
rcv, err := receiver.NewRclipRcv(filepath.Join(conf_dir, "ca_cert"), filepath.Join(conf_dir, "rcv_cert"), filepath.Join(conf_dir, "rcv_key"), *refl_ip, int(*rcv_port), !*loose_san_check)
if err != nil {
common.ErrLog.Println(err)
return
}
rcv.ReadandSend(os.Stdin)
case "sender":
snd, err := sender.NewRclipSender(filepath.Join(conf_dir, "ca_cert"), filepath.Join(conf_dir, "sender_cert"), filepath.Join(conf_dir, "sender_key"), *refl_ip, int(*send_port), !*loose_san_check)
if err != nil {
common.ErrLog.Println(err)
return
}
snd.Receive()
default:
common.ErrLog.Println("wrong role type, it need to be one of rcv/refl/sender")
return
}
}