免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2093 | 回复: 1
打印 上一主题 下一主题

[proxy] traffic server plugin 编译及相关问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-10-14 15:53 |只看该作者 |倒序浏览
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实现,如果方便的话,兄是否有类似解决方案供参考一下。

论坛徽章:
0
2 [报告]
发表于 2012-10-14 22:18 |只看该作者
回复 1# qiucx


    你的问题都是我不擅长的唉。这个问题有点麻烦啦。bbs的消息,读了就找不到了,是不是你发的?我的新浪微薄 @ming_zym 可私信联系。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP