@@ -126,10 +126,11 @@ * @param port The port on the host to connect to * @param target The target on which to call the selector once the connection * has been established * @param selector The selector to call on the target. The signature must be * `void (OFTCPSocket *socket, id context, id exception)`. + * @param context A context object to pass along to the target */ - (void)asyncConnectToHost: (OFString *)host port: (uint16_t)port target: (id)target selector: (SEL)selector @@ -188,10 +189,11 @@ * next incoming connection should be accepted by the specified * block as well. * @param selector The selector to call on the target. The signature must be * `bool (OFTCPSocket *socket, OFTCPSocket *acceptedSocket, * id context, id exception)`. + * @param context A context object to pass along to the target */ - (void)asyncAcceptWithTarget: (id)target selector: (SEL)selector context: (nullable id)context;