identifyProtocolFromBanner function

String? identifyProtocolFromBanner(
  1. String banner
)

Delegate banner protocol identification to algorithm module.

Implementation

String? identifyProtocolFromBanner(String banner) {
  final r = banner_alg.identifyProtocolFromBanner(banner);
  return (r.isEmpty) ? null : r;
}