httpapi:为什么 HttpSendHttpResponse 返回无效参数?

发布于 2024-12-07 06:48:09 字数 270 浏览 1 评论 0原文

我尝试将 http.h 移植到 Delphi,但我对 HttpSendHttpResponse 的调用返回“无效的patameter”,我不确定为什么。

我现在坚持使用 HTTPAPI_V1,并在 WinXP 上进行测试。我已经发布了我用来测试的源代码: http://nldelphi.com/Forum/showthread.php?t=37904

I've tried to port http.h to Delphi, but my calls to HttpSendHttpResponse return 'invalid patameter', and I'm not sure why.

I'm sticking to HTTPAPI_V1 for now, and am testing on WinXP. I have posted source-code I use to test with here:
http://nldelphi.com/Forum/showthread.php?t=37904

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

负佳期 2024-12-14 06:48:09

我遇到了一些问题,最明显的问题是数据类型的对齐规则。将以下内容添加到单元中以验证您的数据结构:

initialization
  {$if sizeof( HTTP_REQUEST          ) <> 464}{$message error 'HTTP_REQUEST          sizeof error.'}{$ifend}
  {$if sizeof( HTTP_RESPONSE         ) <> 280}{$message error 'HTTP_RESPONSE         sizeof error.'}{$ifend}
  {$if sizeof( HTTP_COOKED_URL       ) <>  24}{$message error 'HTTP_COOKED_URL       sizeof error.'}{$ifend}
  {$if sizeof( HTTP_DATA_CHUNK       ) <>  32}{$message error 'HTTP_DATA_CHUNK       sizeof error.'}{$ifend}
  {$if sizeof( HTTP_REQUEST_HEADERS  ) <> 344}{$message error 'HTTP_REQUEST_HEADERS  sizeof error.'}{$ifend}
  {$if sizeof( HTTP_RESPONSE_HEADERS ) <> 256}{$message error 'HTTP_RESPONSE_HEADERS sizeof error.'}{$ifend}
  {$if sizeof( HTTP_SSL_INFO         ) <>  28}{$message error 'HTTP_SSL_INFO         sizeof error.'}{$ifend}

I had some problems with it and the obvious problem was the aligning rules for the data types. Add the following to the unit to validate your data structures:

initialization
  {$if sizeof( HTTP_REQUEST          ) <> 464}{$message error 'HTTP_REQUEST          sizeof error.'}{$ifend}
  {$if sizeof( HTTP_RESPONSE         ) <> 280}{$message error 'HTTP_RESPONSE         sizeof error.'}{$ifend}
  {$if sizeof( HTTP_COOKED_URL       ) <>  24}{$message error 'HTTP_COOKED_URL       sizeof error.'}{$ifend}
  {$if sizeof( HTTP_DATA_CHUNK       ) <>  32}{$message error 'HTTP_DATA_CHUNK       sizeof error.'}{$ifend}
  {$if sizeof( HTTP_REQUEST_HEADERS  ) <> 344}{$message error 'HTTP_REQUEST_HEADERS  sizeof error.'}{$ifend}
  {$if sizeof( HTTP_RESPONSE_HEADERS ) <> 256}{$message error 'HTTP_RESPONSE_HEADERS sizeof error.'}{$ifend}
  {$if sizeof( HTTP_SSL_INFO         ) <>  28}{$message error 'HTTP_SSL_INFO         sizeof error.'}{$ifend}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文