2
0
mirror of https://github.com/Genymobile/scrcpy synced 2025-09-09 02:36:00 +00:00
Files
scrcpy/app/src/sys/unix/net.c

17 lines
221 B
C
Raw Normal View History

#include "net.h"
# include <unistd.h>
SDL_bool net_init(void) {
// do nothing
return SDL_TRUE;
}
void net_cleanup(void) {
// do nothing
}
SDL_bool net_close(socket_t socket) {
return !close(socket);
}