- 论坛徽章:
- 0
|
1. 本人使用sdk3.2,ubuntu 10 Linux,想开发一个类似于example 里protocol组件的功能。 根据http://trafficserver.apache.org/ ... mple-plugin.en.html 指南,用tsxs编译的时候,出现如下错误。thread主要适用example里的thread-pool里的代码。查看错误后,貌似无法编译thrad.h里的typedef int (*ExecFunc) (TSCont, void *);句子。不知道如何解决这个问题?请指教!谢谢
tc@ubuntu:/usr/compile$ tsxs -o ctxplugin.so -c thread.h thread.c content_plugin.h content_plugin.c
compiling thread.h -> thread.lo
thread.h:36: error: expected ‘)’ before ‘void’
thread.h:42: error: expected specifier-qualifier-list before ‘TSCont’
thread.h:62: error: expected specifier-qualifier-list before ‘TSMutex’
thread.h:77: error: expected ‘)’ before ‘contp’
Compile failed: gcc -I/usr/local/include -march=i586 -g -pipe -Wall -Werror -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -fpic -c thread.h -o thread.lo
tc@ubuntu:/usr/compile$
2. 对于分析http头,本人的代码如下,但貌似不很专业,兄是否有更好的解决方案:
void parse_request(char * request_data, CustomRequest * request) ////////////// general ok
{
TSDebug("protocol", "Entering parse_request");
char *token = NULL;
token = strtok(request_data, "\r\n");
while (token)
{
char * g = strstr(token, "GET");
if (g != NULL)
{
char* get = strstr(g, "/");
char ret[40];
get++;
strncpy ( ret, get, strlen(get)-9 );
ret[strlen(get)-9] = '\0';
request->transfer_id = ret;
}
char * pch = strstr(token, "Ingress-Capacity");
if (pch != NULL)
{
char* ret = strstr(pch, ":");
ret ++ ;
request->ingress_capacity = 0;//num;
}
char * r = strstr(token, "Range");
if (r != NULL)
{
char* ret = strstr(r, "=");
ret ++;
request->range = ret;
}
token = strtok(NULL, "\r\n");
}
TSDebug("protocol", "Exit parse_request");
}
3. 为了测试,需要建立一个server以检测plugin功能正常,目前计划用java实现,如果方便的话,兄是否有类似解决方案供参考一下。
|
|