48 lines
1 KiB
C
48 lines
1 KiB
C
|
#ifndef __HTTPIO_H__
|
||
|
#define __HTTPIO_H__
|
||
|
|
||
|
#include "platform.h"
|
||
|
#include "tidy.h"
|
||
|
|
||
|
#ifdef WIN32
|
||
|
# include <winsock.h>
|
||
|
# define ECONNREFUSED WSAECONNREFUSED
|
||
|
#else
|
||
|
# include <sys/socket.h>
|
||
|
# include <netdb.h>
|
||
|
# include <netinet/in.h>
|
||
|
#ifndef __BEOS__
|
||
|
# include <arpa/inet.h>
|
||
|
#endif
|
||
|
#endif /* WIN32 */
|
||
|
|
||
|
TIDY_STRUCT
|
||
|
typedef struct _HTTPInputSource
|
||
|
{
|
||
|
TidyInputSource tis; // This declaration must be first and must not be changed!
|
||
|
|
||
|
tmbstr pHostName;
|
||
|
tmbstr pResource;
|
||
|
unsigned short nPort, nextBytePos, nextUnGotBytePos, nBufSize;
|
||
|
SOCKET s;
|
||
|
char buffer[1024];
|
||
|
char unGetBuffer[16];
|
||
|
|
||
|
} HTTPInputSource;
|
||
|
|
||
|
/* get next byte from input source */
|
||
|
int HTTPGetByte( HTTPInputSource *source );
|
||
|
|
||
|
/* unget byte back to input source */
|
||
|
void HTTPUngetByte( HTTPInputSource *source, uint byteValue );
|
||
|
|
||
|
/* check if input source at end */
|
||
|
Bool HTTPIsEOF( HTTPInputSource *source );
|
||
|
|
||
|
int parseURL( HTTPInputSource* source, tmbstr pUrl );
|
||
|
|
||
|
int openURL( HTTPInputSource* source, tmbstr pUrl );
|
||
|
|
||
|
void closeURL( HTTPInputSource *source );
|
||
|
|
||
|
#endif
|