@@ -4,7 +4,7 @@ package lexfloatclient
4
4
5
5
// int enumeration from lexfloatclient/int.h int =4
6
6
const (
7
- // Success code.
7
+ // Success code.
8
8
LF_OK int = 0
9
9
10
10
// Failure code.
@@ -32,12 +32,12 @@ const (
32
32
LF_E_LICENSE_EXISTS int = 46
33
33
34
34
// License does not exist on server or has already expired. This
35
- // happens when the request to refresh the license is delayed.
35
+ // happens when the request to refresh the license is delayed.
36
36
LF_E_LICENSE_NOT_FOUND int = 47
37
37
38
38
// License lease has expired due to network error. This
39
- // happens when the request to refresh the license fails due to
40
- // network error.
39
+ // happens when the request to refresh the license fails due to
40
+ // network error.
41
41
LF_E_LICENSE_EXPIRED_INET int = 48
42
42
43
43
// The server has reached it's allowed limit of floating licenses.
@@ -65,22 +65,48 @@ const (
65
65
LF_E_METER_ATTRIBUTE_USES_LIMIT_REACHED int = 56
66
66
67
67
// No product version is linked with the license.
68
- LF_E_PRODUCT_VERSION_NOT_LINKED int = 57
68
+ LF_E_PRODUCT_VERSION_NOT_LINKED int = 57
69
69
70
- // The product version feature flag does not exist.
71
- LF_E_FEATURE_FLAG_NOT_FOUND int = 58
70
+ // The product version feature flag does not exist.
71
+ LF_E_FEATURE_FLAG_NOT_FOUND int = 58
72
+
73
+ // Insufficient system permissions.
74
+ LF_E_SYSTEM_PERMISSION int = 59
72
75
73
76
// IP address is not allowed.
74
77
LF_E_IP int = 60
75
78
79
+ // Invalid permission flag.
80
+ LF_E_INVALID_PERMISSION_FLAG int = 61
81
+
82
+ // Offline floating license is not allowed for per-instance leasing strategy.
83
+ LF_E_OFFLINE_FLOATING_LICENSE_NOT_ALLOWED int = 62
84
+
85
+ // Maximum offline lease duration exceeded.
86
+ LF_E_MAX_OFFLINE_LEASE_DURATION_EXCEEDED int = 63
87
+
88
+ // Allowed offline floating clients limit reached.
89
+ LF_E_ALLOWED_OFFLINE_FLOATING_CLIENTS_LIMIT_REACHED int = 64
90
+
91
+ // Fingerprint couldn't be generated because Windows Management
92
+ // Instrumentation (WMI) service has been disabled. This error is specific
93
+ // to Windows only.
94
+ LF_E_WMIC int = 65
95
+
96
+ // Machine fingerprint has changed since activation.
97
+ LF_E_MACHINE_FINGERPRINT int = 66
98
+
99
+ // Request blocked due to untrusted proxy.
100
+ LF_E_PROXY_NOT_TRUSTED int = 67
101
+
76
102
// Client error.
77
103
LF_E_CLIENT int = 70
78
104
79
105
// Server error.
80
106
LF_E_SERVER int = 71
81
107
82
108
// System time on server has been tampered with. Ensure
83
- // your date and time settings are correct on the server machine.
109
+ // your date and time settings are correct on the server machine.
84
110
LF_E_SERVER_TIME_MODIFIED int = 72
85
111
86
112
// The server has not been activated using a license key.
0 commit comments