mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-04-21 01:33:36 +00:00
Wait no more than 2 seconds for accepting the connection from the device, since it blocks the event loop, preventing to react to SIGTERM (Ctrl+C).
9 lines
188 B
C
9 lines
188 B
C
#ifndef NETUTIL_H
|
|
#define NETUTIL_H
|
|
|
|
#include <SDL2/SDL_net.h>
|
|
|
|
// blocking accept on the server socket
|
|
TCPsocket server_socket_accept(TCPsocket server_socket, Uint32 timeout_ms);
|
|
|
|
#endif
|