Add longsms support to client

This commit is contained in:
2023-12-04 09:14:13 +01:00
parent f7976d3738
commit 927ac2edc9
3 changed files with 92 additions and 8 deletions

View File

@@ -68,6 +68,11 @@ const clientOptions = [
defaultOption: 1000,
description: "Default max rate for metrics/bars."
},
{
name: "longsms",
type: Boolean,
description: "Split messages into multiple parts. Applies only if message is too big for one packet."
},
];
const centerOptions = [
@@ -151,6 +156,11 @@ const centerOptions = [
defaultOption: 1000,
description: "Default max rate for metrics/bars."
},
{
name: "longsms",
type: Boolean,
description: "Split messages into multiple parts. Applies only if message is too big for one packet."
},
];
module.exports = { clientOptions, centerOptions };