Found 10 other functions taking a
otTcpListener
argument:
Initializes a TCP listener. Calling this function causes OpenThread to keep track of the TCP listener and store and retrieve TCP data inside @p aListener. The application should refrain from directly accessing or modifying the fields in @p aListener. If the application needs to reclaim the memory backing @p aListener, it should call otTcpListenerDeinitialize().
Obtains the otInstance that was associated with @p aListener upon initialization.
Obtains the context pointer that was associated with @p aListener upon initialization.
Causes incoming TCP connections that match the specified IP address and port to trigger this TCP listener's callbacks.
Causes this TCP listener to stop listening for incoming connections.
Deinitializes this TCP listener. This means that OpenThread no longer keeps track of this TCP listener and deallocates all resources it has internally allocated for this TCP listener. The application can reuse the memory backing the TCP listener as it sees fit. If the TCP listener is currently listening, it stops listening.