• 大小: 2.74KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


c++HTTP源码,http post 简单实现

资源截图

代码片段和文件信息

#include “StdAfx.h“
#include “AmHttpSocket.h“
#include se.h>
#include 

#define AgentName _T(“Nimo Software HTTP Retriever 1.0“)

//case insensitive search functions...
#ifdef UNICODE
#define _tcsustr wcsustr
#else
#define _tcsustr strustr
#endif
char* strustr(char *source char *s);
wchar_t* wcsustr(wchar_t *source wchar_t *s);

char* strustr(char *source char *s)
{
//make an uppercase copy af source and s
char *csource = strdup(source);
char *cs = strdup(s);
strupr(csource);
strupr(cs);
//find cs in csource...
char *result = strstr(csource cs);
if (result != NULL)
{
//cs is somewhere in csource
int pos = result - csource;
result = source;
result += pos;
}
//clean up
free(csource);
free(cs);
return result;
}

wchar_t* wcsustr(wchar_t *source wchar_t *s)
{
//make an uppercase copy af source and s
wchar_t *csource = wcsdup(source);
wchar_t *cs = wcsdup(s);
wcsupr(csource);
wcsupr(cs);
//find cs 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       6502  2001-09-01 10:15  AmHttpSocket.cpp

     文件       1064  2001-09-01 10:15  AmHttpSocket.h

----------- ---------  ---------- -----  ----

                 7566                    2


评论

共有 条评论