pmcf 2.31.0 → 2.31.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/services/dhcp.mjs +3 -3
package/package.json
CHANGED
package/src/services/dhcp.mjs
CHANGED
|
@@ -96,6 +96,9 @@ export class DHCPService extends Service {
|
|
|
96
96
|
type: "memfile",
|
|
97
97
|
"lfc-interval": 3600
|
|
98
98
|
},
|
|
99
|
+
"multi-threading": {
|
|
100
|
+
"enable-multi-threading": false
|
|
101
|
+
},
|
|
99
102
|
"expired-leases-processing": {
|
|
100
103
|
"reclaim-timer-wait-time": 10,
|
|
101
104
|
"flush-reclaimed-timer-wait-time": 25,
|
|
@@ -233,9 +236,6 @@ export class DHCPService extends Service {
|
|
|
233
236
|
"interfaces-config": {
|
|
234
237
|
interfaces: listenInterfaces("IPv4")
|
|
235
238
|
},
|
|
236
|
-
"multi-threading": {
|
|
237
|
-
"enable-multi-threading": false
|
|
238
|
-
},
|
|
239
239
|
"control-socket": {
|
|
240
240
|
"socket-type": "unix",
|
|
241
241
|
"socket-name": "/run/kea/4-ctrl-socket"
|