File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ protected void OnEnable()
39
39
var config = EzyClientConfig . builder ( )
40
40
. clientName ( socketConfigVariable . Value . ZoneName )
41
41
. zoneName ( socketConfigVariable . Value . ZoneName )
42
+ . enableSSL ( socketConfigVariable . Value . EnableSSL )
42
43
. build ( ) ;
43
44
EzyClientFactory
44
45
. getInstance ( )
Original file line number Diff line number Diff line change @@ -29,12 +29,16 @@ public class EzySocketConfigModel
29
29
[ SerializeField ]
30
30
private bool udpUsage ;
31
31
32
+ [ SerializeField ]
33
+ private bool enableSSL ;
34
+
32
35
public string ZoneName => zoneName ;
33
36
public string AppName => appName ;
34
37
public string WebSocketUrl => webSocketUrl ;
35
38
public string TcpUrl => tcpUrl ;
36
39
public int UdpPort => udpPort ;
37
40
public bool UdpUsage => udpUsage ;
41
+ public bool EnableSSL => enableSSL ;
38
42
}
39
43
}
40
44
}
You can’t perform that action at this time.
0 commit comments