feat(ReachV33): getModemAuthentication

This commit is contained in:
2025-09-29 14:17:51 +02:00
parent 0e0ff22a46
commit 9a57e8d8bd
5 changed files with 47 additions and 3 deletions

View File

@@ -222,4 +222,19 @@ func (c *Client) GetModemConfiguration(ctx context.Context) (any, error) {
return config, nil
}
// GetModemConfiguration implements protocol.Operations.
func (c *Client) GetModemAuthentication(ctx context.Context) (any, error) {
_, ops, err := c.getProtocol(ctx)
if err != nil {
return nil, errors.WithStack(err)
}
config, err := ops.GetModemAuthentication(ctx)
if err != nil {
return nil, errors.WithStack(err)
}
return config, nil
}
var _ protocol.Operations = &Client{}