mirror of
https://github.com/sheumann/NetDisk.git
synced 2024-11-23 22:37:02 +00:00
77 lines
1.9 KiB
C
77 lines
1.9 KiB
C
#ifndef SESSION_H
|
|
#define SESSION_H
|
|
|
|
#include <types.h>
|
|
#include "twoimg.h"
|
|
#include "diskcopy42.h"
|
|
|
|
typedef struct Session {
|
|
/* Marinetti TCP connection status */
|
|
Word ipid;
|
|
Boolean tcpLoggedIn;
|
|
|
|
/* ReadTCP status */
|
|
LongWord readCount;
|
|
Byte *readPtr;
|
|
LongWord lastReadTime;
|
|
|
|
/* 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;
|
|
/* Length of HTTP request */
|
|
LongWord httpRequestLen;
|
|
|
|
/* HTTP response code */
|
|
LongWord responseCode;
|
|
|
|
/* IP address and TCP port of host */
|
|
LongWord ipAddr;
|
|
Word port;
|
|
|
|
/* Domain name or IP address of host (p-string, but also null-terminated) */
|
|
char hostName[257];
|
|
/* Time (GetTick) of last DNS lookup */
|
|
LongWord dnsTime;
|
|
|
|
/* 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;
|
|
|
|
/* Desired start/end of range for next request */
|
|
LongWord desiredStart, desiredEnd;
|
|
/* Expected length of disk image */
|
|
LongWord expectedLength;
|
|
|
|
/* Offset of disk image blocks within file */
|
|
LongWord dataOffset;
|
|
/* Length of disk image data */
|
|
LongWord dataLength;
|
|
|
|
/* Is the image in DOS order? */
|
|
Boolean dosOrder;
|
|
|
|
/* Should the GS/OS block cache be used? */
|
|
Boolean useCache;
|
|
|
|
/* Buffer for initial bytes of file (which may be a disk image header) */
|
|
union {
|
|
unsigned char buf[84];
|
|
struct TwoImgHeader twoImgHeader;
|
|
struct DiskCopy42Header diskCopy42Header;
|
|
} fileHeader;
|
|
} Session;
|
|
|
|
|
|
void EndNetDiskSession(Session *sess);
|
|
|
|
#endif
|