onSasl2Success method

  1. @override
Future<Result<bool, NegotiatorError>> onSasl2Success(
  1. XMLNode response
)
override

Called by the SASL2 negotiator when the SASL2 negotiations are done. response is the entire response nonza. This method is only called when the previous element contains an item with xmlns equal to negotiatingXmlns.

Implementation

@override
Future<Result<bool, NegotiatorError>> onSasl2Success(XMLNode response) async {
  final bound = response.firstTag('bound', xmlns: bind2Xmlns);
  if (bound != null) {
    for (final negotiator in _negotiators) {
      await negotiator.onBind2Success(bound);
    }
  }

  attributes.removeNegotiatingFeature(bindXmlns);
  return const Result(true);
}