2018-07-30 04:40:03 +00:00
|
|
|
#ifndef SESSION_H
|
|
|
|
#define SESSION_H
|
|
|
|
|
|
|
|
#include <types.h>
|
|
|
|
|
|
|
|
typedef struct Session {
|
|
|
|
/* Marinetti TCP connection status */
|
|
|
|
Word ipid;
|
|
|
|
Boolean tcpLoggedIn;
|
|
|
|
|
|
|
|
/* ReadTCP status */
|
|
|
|
LongWord readCount;
|
|
|
|
Byte *readPtr;
|
|
|
|
|
|
|
|
/* Marinetti error codes, both the tcperr* value and any tool error */
|
|
|
|
Word tcperr;
|
|
|
|
Word toolerr;
|
|
|
|
|
|
|
|
/* HTTP request to send (if non-NULL, points to malloc'd buffer) */
|
|
|
|
char *httpRequest;
|
|
|
|
/* Pointer to the range part within httpRequest */
|
|
|
|
char *httpRequestRange;
|
2018-08-01 05:05:19 +00:00
|
|
|
/* Length of HTTP request */
|
|
|
|
LongWord httpRequestLen;
|
|
|
|
|
|
|
|
/* HTTP response code */
|
2018-08-01 06:37:22 +00:00
|
|
|
LongWord responseCode;
|
2018-07-30 04:40:03 +00:00
|
|
|
|
|
|
|
/* IP address and TCP port of host */
|
|
|
|
LongWord ipAddr;
|
|
|
|
Word port;
|
|
|
|
|
2018-07-31 02:35:45 +00:00
|
|
|
/* Domain name or IP address of host (p-string, but also null-terminated) */
|
|
|
|
char hostName[257];
|
2018-07-30 04:40:03 +00:00
|
|
|
/* Time (GetTick) of last DNS lookup */
|
|
|
|
LongWord dnsTime;
|
2018-08-01 05:05:19 +00:00
|
|
|
|
|
|
|
/* Number of redirects followed */
|
|
|
|
Word redirectCount;
|
|
|
|
|
|
|
|
/* Values reported by server in Content-Range header */
|
|
|
|
LongWord rangeStart, rangeEnd, totalLength;
|
|
|
|
/* Value reported by server in Content-Length header */
|
|
|
|
LongWord contentLength;
|
2018-08-01 06:37:22 +00:00
|
|
|
|
|
|
|
/* Desired start/end of range for next request */
|
|
|
|
LongWord desiredStart, desiredEnd;
|
|
|
|
/* Expected length of disk image */
|
|
|
|
LongWord expectedLength;
|
2018-07-30 04:40:03 +00:00
|
|
|
} Session;
|
|
|
|
|
|
|
|
#endif
|