return http error code from CGI C module

2019-08-08 17:31发布

I've a CGI module written in C & for some condition I want to return HTTP error 400 from this module. The problem is - I don't know how to return HTTP error from the module.

Looks like the 'return(-1)' in my module, returns the 500 internal server error. I've tried returning 400 etc. but in vein. I've even tried "printf("Status:400");" before returning -1 (as suggested here: How to return a 500 HTTP status from a C++ CGI program ) but that didn't work.

Any advice on this would be appreciated.

Edit: [solved] I was able to return HTTP error code from the python module (which is called later by this C CGI module). So didn't get to try the suggestion mentioned in comments below. Thanks for offering help, though.

标签: c http module cgi
2条回答
手持菜刀,她持情操
2楼-- · 2019-08-08 18:03

To return HTTP error code from your CGI script, you have to write it into stdout, such as:

#include <stdio.h>

int main()
{
    printf("status: 400\n\n");

    return 0;
}

Just the status: status-code\n\n is necessary.

查看更多
来,给爷笑一个
3楼-- · 2019-08-08 18:15

To return HTTP error 400 to the HTTP client, you have to write the HTTP status line to stdout, like this:

printf("Status: 400 Bad Request\n");

Ref: https://tools.ietf.org/html/rfc3875

The Status header field contains a 3-digit integer result code that indicates the level of success of the script's attempt to handle the request.

  Status         = "Status:" status-code SP reason-phrase NL
  status-code    = "200" | "302" | "400" | "501" | extension-code
  extension-code = 3digit
  reason-phrase  = *TEXT
查看更多
登录 后发表回答