@@ -24,28 +24,71 @@ import (
24
24
// ControllerConfig is the configuration that is applied into Controller.
25
25
type ControllerConfig func (c * Controller )
26
26
27
- // SystemdConnector generates a config that sets the systemd.Connector into Controller.
28
- func SystemdConnector (connector systemd.Connector ) ControllerConfig {
27
+ func WithGlobalInterfaceName (globalInterfaceName string ) ControllerConfig {
28
+ return func (c * Controller ) {
29
+ c .globalInterfaceName = globalInterfaceName
30
+ }
31
+ }
32
+
33
+ func WithHostAddress (hostAddress string ) ControllerConfig {
34
+ return func (c * Controller ) {
35
+ c .hostAddress = hostAddress
36
+ }
37
+ }
38
+
39
+ func WithDBServingPort (dbServingPort uint16 ) ControllerConfig {
40
+ return func (c * Controller ) {
41
+ c .dbServingPort = dbServingPort
42
+ }
43
+ }
44
+
45
+ func WithDBReplicaUserName (dbReplicaUserName string ) ControllerConfig {
46
+ return func (c * Controller ) {
47
+ c .dbReplicaUserName = dbReplicaUserName
48
+ }
49
+ }
50
+
51
+ func WithDBReplicaPassword (dbReplicaPassword string ) ControllerConfig {
52
+ return func (c * Controller ) {
53
+ c .dbReplicaPassword = dbReplicaPassword
54
+ }
55
+ }
56
+
57
+ func WithDBReplicaSourcePort (dbReplicaSourcePort uint16 ) ControllerConfig {
58
+ return func (c * Controller ) {
59
+ c .dbReplicaSourcePort = dbReplicaSourcePort
60
+ }
61
+ }
62
+
63
+ func WithDBAclChainName (dbAclChainName string ) ControllerConfig {
64
+ return func (c * Controller ) {
65
+ c .dbAclChainName = dbAclChainName
66
+ }
67
+ }
68
+
69
+ // WithSystemdConnector generates a config that sets the systemd.Connector into Controller.
70
+ func WithSystemdConnector (connector systemd.Connector ) ControllerConfig {
29
71
return func (c * Controller ) {
30
72
c .systemdConnector = connector
31
73
}
32
74
}
33
75
34
- func MariaDBConnector (connector mariadb.Connector ) ControllerConfig {
76
+ // WithMariaDBConnector generates a config that sets the mariadb.Connector into Controller.
77
+ func WithMariaDBConnector (connector mariadb.Connector ) ControllerConfig {
35
78
return func (c * Controller ) {
36
79
c .mariaDBConnector = connector
37
80
}
38
81
}
39
82
40
- // NftablesConnector generates a config that sets the nftables.Connector into Controller.
41
- func NftablesConnector (connector nftables.Connector ) ControllerConfig {
83
+ // WithNftablesConnector generates a config that sets the nftables.Connector into Controller.
84
+ func WithNftablesConnector (connector nftables.Connector ) ControllerConfig {
42
85
return func (c * Controller ) {
43
86
c .nftablesConnector = connector
44
87
}
45
88
}
46
89
47
- // BGPdConnector generates a config that sets the vtysh.BGPdConnector into Controller.
48
- func BGPdConnector (connector bgpd.BGPdConnector ) ControllerConfig {
90
+ // WithBGPdConnector generates a config that sets the vtysh.WithBGPdConnector into Controller.
91
+ func WithBGPdConnector (connector bgpd.BGPdConnector ) ControllerConfig {
49
92
return func (c * Controller ) {
50
93
c .bgpdConnector = connector
51
94
}
0 commit comments