// This file Copyright © 2006-2022 Transmission authors and contributors. // It may be used under the MIT (SPDX: MIT) license. // License text can be found in the licenses/ folder. #import typedef NS_ENUM(unsigned int, port_status_t) { // PORT_STATUS_CHECKING, PORT_STATUS_OPEN, PORT_STATUS_CLOSED, PORT_STATUS_ERROR }; @interface PortChecker : NSObject { id fDelegate; port_status_t fStatus; NSURLConnection* fConnection; NSMutableData* fPortProbeData; NSTimer* fTimer; } - (instancetype)initForPort:(NSInteger)portNumber delay:(BOOL)delay withDelegate:(id)delegate; - (void)cancelProbe; @property(nonatomic, readonly) port_status_t status; @end