]> git.pond.sub.org Git - empserver/blobdiff - include/player.h
Fix idle timeout during execute
[empserver] / include / player.h
index 459b64d3549d01e53061ca3bbdda9b3c361d27ed..e6ae8d2a5afaa6fb70acd22b7cb990529902363a 100644 (file)
@@ -29,7 +29,7 @@
  *  Known contributors to this file:
  *     Dave Pare, 1994
  *     Doug Hay, 1998
- *     Markus Armbruster, 2005-2009
+ *     Markus Armbruster, 2005-2012
  */
 
 #ifndef PLAYER_H
@@ -68,6 +68,7 @@ struct player {
     struct cmndstr *command;   /* currently executing command */
     struct iop *iop;
     char combuf[1024];         /* command input buffer, UTF-8 */
+    char argbuf[1024];         /* argument buffer, ASCII */
     char *argp[128];           /* arguments, ASCII, valid if command */
     char *condarg;             /* conditional, ASCII, valid if command */
     char *comtail[128];                /* start of args in combuf[] */
@@ -80,8 +81,8 @@ struct player {
     double dolcost;
     time_t curup;              /* when last input was received */
     enum player_sleep may_sleep; /* when may thread sleep? */
-    int aborted;               /* interrupt cookie or EOF received? */
-    int eof;                   /* EOF (cookie or real) received? */
+    int aborted;               /* command aborted? */
+    int got_ctld;              /* EOF cookie received? */
     int recvfail;              /* #recvclient() failures */
     int curid;                 /* for pr, cur. line's id, -1 none */
     char *map;                 /* pointer to in-mem map */