免费注册 查看新帖 |

Chinaunix

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

请教一个Openssl的问题,着急。。。。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-09-09 20:10 |只看该作者 |倒序浏览
下面的是服务器端的监听程序:
GError* error = NULL;
  int sock,s;
  BIO *sbio, *bbio, *acpt;
  SSL_CTX *ctx;
  SSL *ssl;

  /* Build our SSL context*/
  ctx=initialize_ctx("./cert/servercert.pem",
                "./cert/serverkey.pem",PASSWORD);
  // load_dh_params(ctx,DHFILE);

     sbio = BIO_new_ssl (ctx,0);
     BIO_get_ssl(sbio, &ssl);
     if (!ssl)
     {
           g_printerr("Can't locate SSL pointer\n");
           return -1;
     }
      /* Don't want any retries */
     SSL_set_mode (ssl, SSL_MODE_AUTO_RETRY);
     /* Create the buffering BIO */
     bbio = BIO_new (BIO_f_buffer ());
     /* Add to chain */
     sbio = BIO_push (bbio, sbio);
     gchar* port = g_strdup_printf ("%d", listen_port);
     acpt=BIO_new_accept (port);
     g_free (port);
     
     /* By doing this when a new connection is established
     * we automatically have sbio inserted into it. The
     * BIO chain is now 'swallowed' by the accept BIO and
     * will be freed when the accept BIO is freed.
     */
     BIO_set_accept_bios (acpt,sbio);
//      BIO_set_accept_port(acpt, "*:54999");
     /* Setup accept BIO */
     if (BIO_do_accept (acpt) <= 0)
     {
           fprintf(stderr, "Error setting up accept BIO\n");
           ERR_print_errors_fp(stderr);
           return -1;
     }
     
     while (1)
     {
           /* Now wait for incoming connection */
           if (BIO_do_accept (acpt) <= 0)
           {
                 fprintf(stderr, "Error in connection\n");
                 ERR_print_errors_fp(stderr);
                 return -1;
           }
           BIO * c_sbio = BIO_pop (acpt); /* c_sbio may be is the childe of sbio ??*/
           if( !g_thread_create((GThreadFunc)minp_response, c_sbio, FALSE, &error) )
           {
                 g_printerr("协议分析线程\n");
           }      
  }
  BIO_free_all (acpt);
  SSL_CTX_free (ctx);
  g_thread_exit(0);
这上面是用BIO改后的程序,原来用的是SSL。客户端能连原来的,但是改后就不能连了。“拒绝连接”。
我想问题可能是上面服务器端的问题。我用 netstat -tlp ,查看到,服务器端正在监听端口,本地地址是"localhost:4999",请各位大侠帮忙看看,有什么问题
[此贴被hecate_eos在2010-09-9 3:50 PM重新编辑]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP