Return non-zero value on connection loss

Make scrscpy to return 0 exit code only in case when the user closes its
app, otherwise, i.e. in case of connection loss, return 1.
This commit is contained in:
Grief 2018-07-20 17:33:55 +03:00 committed by Romain Vimont
parent 6fa209fa82
commit cde0b3d248

View file

@ -56,7 +56,7 @@ static int event_watcher(void *data, SDL_Event *event) {
} }
#endif #endif
static void event_loop(void) { static SDL_bool event_loop(void) {
#ifdef CONTINUOUS_RESIZING_WORKAROUND #ifdef CONTINUOUS_RESIZING_WORKAROUND
SDL_AddEventWatch(event_watcher, NULL); SDL_AddEventWatch(event_watcher, NULL);
#endif #endif
@ -65,10 +65,10 @@ static void event_loop(void) {
switch (event.type) { switch (event.type) {
case EVENT_DECODER_STOPPED: case EVENT_DECODER_STOPPED:
LOGD("Video decoder stopped"); LOGD("Video decoder stopped");
return; return SDL_FALSE;
case SDL_QUIT: case SDL_QUIT:
LOGD("User requested to quit"); LOGD("User requested to quit");
return; return SDL_TRUE;
case EVENT_NEW_FRAME: case EVENT_NEW_FRAME:
if (!screen.has_frame) { if (!screen.has_frame) {
screen.has_frame = SDL_TRUE; screen.has_frame = SDL_TRUE;
@ -76,7 +76,7 @@ static void event_loop(void) {
screen_show_window(&screen); screen_show_window(&screen);
} }
if (!screen_update_frame(&screen, &frames)) { if (!screen_update_frame(&screen, &frames)) {
return; return SDL_FALSE;
} }
break; break;
case SDL_WINDOWEVENT: case SDL_WINDOWEVENT:
@ -109,6 +109,7 @@ static void event_loop(void) {
break; break;
} }
} }
return SDL_FALSE;
} }
static process_t set_show_touches_enabled(const char *serial, SDL_bool enabled) { static process_t set_show_touches_enabled(const char *serial, SDL_bool enabled) {
@ -210,7 +211,7 @@ SDL_bool scrcpy(const struct scrcpy_options *options) {
show_touches_waited = SDL_TRUE; show_touches_waited = SDL_TRUE;
} }
event_loop(); ret = event_loop();
LOGD("quit..."); LOGD("quit...");
screen_destroy(&screen); screen_destroy(&screen);