identifyProtocolFromBanner function
Delegate banner protocol identification to algorithm module.
Implementation
String? identifyProtocolFromBanner(String banner) {
final r = banner_alg.identifyProtocolFromBanner(banner);
return (r.isEmpty) ? null : r;
}