#pragma once #include "rs_string.h" const rs_string ValidResponse = "HTTP/1.1 200 OK\r\n" "Content-Length: 300\r\n" "Connection: close\r\n" "Content-Type: text/html; charset=utf-8\r\n\r\n" "
" "Thank you for using Amazon Redshift! You can now close this window.
"; const rs_string InvalidResponse = "HTTP/1.1 400 Bad Request\r\n" "Content-Length: 95\r\n" "Connection: close\r\n" "Content-Type: text/html; charset=utf-8\r\n\r\n" "The request could not be understood by the server!";