We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If i look right we can just copy set_header to add_header and ap_table_set to replace ap_table_add https://github.com/HaxeFoundation/neko/blob/master/libs/mod_neko/cgi.c#L178
Or we can add an option as bool add like in https://github.com/HaxeFoundation/neko/blob/master/libs/mod_tora/mod_tora.c#L132
I think it's better to add a new function so as not to break any code.
If it is added should we also add this function to: https://github.com/HaxeFoundation/haxe/blob/development/std/neko/Web.hx#L108
Also we can add it to php https://github.com/HaxeFoundation/haxe/blob/development/std/php/Web.hx#L129 with header('$h: $v', false);
header('$h: $v', false);
I am currently trying to find out how Tora is affected.
The text was updated successfully, but these errors were encountered:
add a add_header function to mod_neko HaxeFoundation#204
98b8299
support add_header based on HaxeFoundation/neko#204
2e0fdde
No branches or pull requests
If i look right we can just copy set_header to add_header and ap_table_set to replace ap_table_add
https://github.com/HaxeFoundation/neko/blob/master/libs/mod_neko/cgi.c#L178
Or we can add an option as bool add like in https://github.com/HaxeFoundation/neko/blob/master/libs/mod_tora/mod_tora.c#L132
I think it's better to add a new function so as not to break any code.
If it is added should we also add this function to: https://github.com/HaxeFoundation/haxe/blob/development/std/neko/Web.hx#L108
Also we can add it to php https://github.com/HaxeFoundation/haxe/blob/development/std/php/Web.hx#L129 with
header('$h: $v', false);
I am currently trying to find out how Tora is affected.
The text was updated successfully, but these errors were encountered: