diff --git a/DigestPlay.c b/DigestPlay.c index 7150948..273e163 100644 --- a/DigestPlay.c +++ b/DigestPlay.c @@ -24,7 +24,7 @@ #define COUNT(array) sizeof(array) / sizeof(array[0]) -#define BUFFER_SIZE 128 +#define BUFFER_SIZE 64 #define CLIENT_NAME "DigestPlay " STRING(VERSION) " " BUILD int main(int argc, char* argv[]) diff --git a/RewindClient.c b/RewindClient.c index 1af3c79..22c27b0 100644 --- a/RewindClient.c +++ b/RewindClient.c @@ -8,6 +8,7 @@ #include #include +#include #include #include @@ -287,10 +288,14 @@ int WaitForRewindSessionEnd(struct RewindContext* context, struct RewindSessionP struct RewindSessionPollData* response = (struct RewindSessionPollData*)buffer->data; ssize_t length; - uint32_t control = 0; + uint32_t state = 0b00; + struct timeval now; + struct timeval threshold; - interval += time(NULL); - while (interval > time(NULL)) + gettimeofday(&threshold, NULL); + threshold.tv_sec += interval; + + do { TransmitRewindData(context, REWIND_TYPE_KEEP_ALIVE, REWIND_FLAG_NONE, context->data, context->length); TransmitRewindData(context, REWIND_TYPE_SESSION_POLL, REWIND_FLAG_NONE, request, sizeof(struct RewindSessionPollData)); @@ -309,7 +314,7 @@ int WaitForRewindSessionEnd(struct RewindContext* context, struct RewindSessionP switch (le16toh(buffer->type)) { case REWIND_TYPE_KEEP_ALIVE: - control |= 0b01; + state |= 0b01; break; case REWIND_TYPE_SESSION_POLL: @@ -318,18 +323,21 @@ int WaitForRewindSessionEnd(struct RewindContext* context, struct RewindSessionP // No active sessions return CLIENT_ERROR_SUCCESS; } - control |= 0b10; + state |= 0b10; break; } - if (control == 0b11) + if (state == 0b11) { // Got REWIND_TYPE_KEEP_ALIVE and REWIND_TYPE_SESSION_POLL // Wait for 2 seconds before the next attempt sleep(RECEIVE_TIMEOUT); - control = 0b00; + state = 0b00; } + + gettimeofday(&now, NULL); } + while (timercmp(&now, &threshold, <)); return CLIENT_ERROR_RESPONSE_TIMEOUT; }