mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
720 B
29 lines
720 B
/* unwrap.h -- handle de-enveloping of encrypted server response. */
|
|
/* Jeffery L Hostetler, Spyglass, Inc. Copyright (c) 1995. */
|
|
|
|
#ifndef _H_UNWRAP_H_
|
|
#define _H_UNWRAP_H_
|
|
|
|
struct Params_UnwrapResponse
|
|
{
|
|
int * pStatus;
|
|
HTInputSocket ** pisocInput;
|
|
HTSPM * htspm;
|
|
OpaqueOSData osd;
|
|
D_ProcessData pd;
|
|
HTSPMStatusCode * htspm_status;
|
|
void * pcpd;
|
|
};
|
|
int Unwrap_Async(struct Mwin *tw, int nState, void **ppInfo);
|
|
|
|
struct Params_Isoc_GetWholeDoc
|
|
{
|
|
HTInputSocket * isoc;
|
|
HTInputSocket * isocCurrent;
|
|
int * pStatus; /* where to put return status */
|
|
int content_length;
|
|
int bytes_received;
|
|
};
|
|
int Isoc_GetWholeDoc_Async(struct Mwin *tw, int nState, void **ppInfo);
|
|
|
|
#endif /* _H_UNWRAP_H_ */
|