Click here to Skip to main content
15,884,298 members
Articles / Desktop Programming / WTL

RSS Reader Plug-in for Internet Explorer

Rate me:
Please Sign up or sign in to vote.
5.00/5 (12 votes)
16 Jul 2007CPOL4 min read 317.3K   1.3K   32  
This is a toolbar for the Internet Explorer which shows information from RSS taken from the Internet.
// Request.h: interface for the Request class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_REQUEST_H__9F2C9BB6_CBA7_40AF_80A4_09A1CE1CE220__INCLUDED_)
#define AFX_REQUEST_H__9F2C9BB6_CBA7_40AF_80A4_09A1CE1CE220__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000



#include <winsock.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <atlmisc.h>




#define MEM_BUFFER_SIZE 10

/* 
	HTTPRequest: Structure that returns the HTTP headers and message
					from the request
*/
typedef struct
{ 
    LPSTR headerSend;								// Pointer to HTTP header Send 
	LPSTR headerReceive;							// Pointer to HTTP headers Receive
    LPSTR message;									// Pointer to the HTTP message 
    long messageLength;								// Length of the message 
} HTTPRequest;

/* 
	MemBuffer:	Structure used to implement a memory buffer, which is a
				buffer of memory that will grow to hold variable sized
				parts of the HTTP message. 
*/
typedef struct
{
    unsigned	char *buffer;
    unsigned	char *position;
    size_t		size;
} MemBuffer;


class Request  
{
public:
	Request();
	virtual ~Request();

public:
	void		MemBufferCreate(MemBuffer *b);
	void		MemBufferGrow(MemBuffer *b);
	void		MemBufferAddByte(MemBuffer *b, unsigned char byt);
	void		MemBufferAddBuffer(MemBuffer *b, unsigned char *buffer, size_t size);
	DWORD		GetHostAddress(LPCSTR host);
	void		SendString(SOCKET sock,LPCSTR str);
	BOOL		ValidHostChar(char ch);
	void		ParseURL(LPCSTR url,LPSTR protocol,int lprotocol, LPSTR host,int lhost,LPSTR request,int lrequest,int *port);
	int			SendHTTP(LPCSTR url,LPCSTR headers,BYTE *post, DWORD postLength,HTTPRequest *req);
public:
	//void		SendRequest(bool IsPost, LPCSTR url, char *pszHeaderSend, char *pszHeaderReceive, char *pszMessage);
	void		SendRequest(bool IsPost, LPCSTR url, CString &psHeaderSend, CString &psHeaderReceive, CString &psMessage);
};

#endif // !defined(AFX_REQUEST_H__9F2C9BB6_CBA7_40AF_80A4_09A1CE1CE220__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
Quote : "Life is all about solving problems and enjoying their solutions !! "

Comments and Discussions