enum http_status status;
/** Non-zero if we included \a fd in the read set.*/
int check_r;
- /** Non-zero if we included \a fd in the write set. */
- int check_w;
/** The position of this client in the client list. */
struct list_head node;
/** non-zero if audio file header has been sent */
}
}
-static void http_post_select(fd_set *rfds, fd_set *wfds)
+static void http_post_select(fd_set *rfds, __a_unused fd_set *wfds)
{
int i = -1, match;
struct http_client *hc, *tmp;
}
break;
case HTTP_GOT_GET_REQUEST: /* need to send ok msg */
- if (hc->check_w && FD_ISSET(hc->fd, wfds)) {
- hc->status = HTTP_STREAMING;
- http_send_ok_msg(hc);
- }
+ hc->status = HTTP_STREAMING;
+ http_send_ok_msg(hc);
break;
case HTTP_INVALID_GET_REQUEST: /* need to send err msg */
- if (hc->check_w && FD_ISSET(hc->fd, wfds)) {
- if (http_send_err_msg(hc) >= 0)
- http_shutdown_client(hc,
- "invalid get request");
- }
+ if (http_send_err_msg(hc) >= 0)
+ http_shutdown_client(hc, "invalid get request");
break;
}
}
free(hc);
}
-static void http_pre_select(int *max_fileno, fd_set *rfds, fd_set *wfds)
+static void http_pre_select(int *max_fileno, fd_set *rfds, __a_unused fd_set *wfds)
{
struct http_client *hc, *tmp;
list_for_each_entry_safe(hc, tmp, &clients, node) {
//PARA_DEBUG_LOG("hc %p on fd %d: status %d\n", hc, hc->fd, hc->status);
hc->check_r = 0;
- hc->check_w = 0;
switch (hc->status) {
case HTTP_STREAMING:
+ case HTTP_GOT_GET_REQUEST: /* need to send ok msg */
+ case HTTP_INVALID_GET_REQUEST: /* need to send err msg */
break;
case HTTP_CONNECTED: /* need to recv get request */
para_fd_set(hc->fd, rfds, max_fileno);
hc->check_r = 1;
break;
- case HTTP_GOT_GET_REQUEST: /* need to send ok msg */
- case HTTP_INVALID_GET_REQUEST: /* need to send err msg */
- para_fd_set(hc->fd, wfds, max_fileno);
- hc->check_w = 1;
- break;
}
}
}