9b056f5091
SDL_net is not very suitable for scrcpy. For example, SDLNet_TCP_Accept() is non-blocking, so we have to wrap it by calling many SDL_Net-specific functions to make it blocking. But above all, SDLNet_TCP_Open() is a server socket only when no IP is provided; otherwise, it's a client socket. Therefore, it is not possible to create a server socket bound to localhost, so it accepts connections from anywhere. This is a problem for scrcpy, because on start, the application listens for nearly 1 second until it accepts the first connection, supposedly from the device. If someone on the local network manages to connect to the server socket first, then they can stream arbitrary H.264 video. This may be troublesome, for example during a public presentation ;-) Provide our own simplified API (net.h) instead, implemented for the different platforms.
31 lines
809 B
C
31 lines
809 B
C
#ifndef CONTROL_H
|
|
#define CONTROL_H
|
|
|
|
#include "controlevent.h"
|
|
|
|
#include <SDL2/SDL_mutex.h>
|
|
#include <SDL2/SDL_stdinc.h>
|
|
#include <SDL2/SDL_thread.h>
|
|
|
|
#include "net.h"
|
|
|
|
struct controller {
|
|
socket_t video_socket;
|
|
SDL_Thread *thread;
|
|
SDL_mutex *mutex;
|
|
SDL_cond *event_cond;
|
|
SDL_bool stopped;
|
|
struct control_event_queue queue;
|
|
};
|
|
|
|
SDL_bool controller_init(struct controller *controller, socket_t video_socket);
|
|
void controller_destroy(struct controller *controller);
|
|
|
|
SDL_bool controller_start(struct controller *controller);
|
|
void controller_stop(struct controller *controller);
|
|
void controller_join(struct controller *controller);
|
|
|
|
// expose simple API to hide control_event_queue
|
|
SDL_bool controller_push_event(struct controller *controller, const struct control_event *event);
|
|
|
|
#endif
|