fix(cmd): increase /connect max args from 7 to 9 #65
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix/connect_max_args"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
fix(cmd): increase /connect max args from 7 to 9
Description
The /connect command was configured to accept a maximum of 7 arguments, but the actual command syntax requires up to 9 arguments when fully specified:
Argument count: account + server + + port + + tls + <tls_value> + auth + <auth_value> = 9 args
Solution
Updated parse_args max argument count from 7 to 9 in /connect command definition.
Changes
cmd_defs.c: Changed max args from 7 to 9, added explanatory comment
Testing
Verified that /connect with all options now parses correctly
All unit tests pass
All functional tests pass
LGTM