};
/**
- * the task for audiod's child (para_client stat)
+ * the task for obtaining para_server's status (para_client stat)
*
* \sa struct task, struct sched
*/
struct status_task {
/** the associated task structure of audiod */
struct task task;
+ /** client data associated with the stat task */
struct private_client_data *pcd;
/** the array of status items sent by para_server */
char *stat_item_values[NUM_STAT_ITEMS];
int length_seconds;
/** the start of the current stream from the view of para_server */
struct timeval server_stream_start;
- /** the averaged time deviation between para_server and para_audiod */
+ /** the average time deviation between para_server and para_audiod */
struct timeval sa_time_diff;
/** whether client time is ahead of server time */
int sa_time_diff_sign;
- /** non-zero if \a af_status is "playing" */
+ /** non-zero if para_server's status is "playing" */
int playing;
};