We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The command tool vclient has a limit of 512 characters for the list of command. -c, --command <commandlist>
-c, --command <commandlist>
I do read all the command at once to publish them all via mqtt, this fails as my command list is 1938 character long.
Limitation is the commands array that is declared with 512 char long at: https://github.com/openv/vcontrold/blob/master/src/vclient.c#L85 char commands[512] = "";
char commands[512] = "";
Could this be increased?
The text was updated successfully, but these errors were encountered:
Issue openv#134: Increase max command length in vclient
edde773
Successfully merging a pull request may close this issue.
The command tool vclient has a limit of 512 characters for the list of command.
-c, --command <commandlist>
I do read all the command at once to publish them all via mqtt, this fails as my command list is 1938 character long.
Limitation is the commands array that is declared with 512 char long at: https://github.com/openv/vcontrold/blob/master/src/vclient.c#L85
char commands[512] = "";
Could this be increased?
The text was updated successfully, but these errors were encountered: