Skip to content

Instantly share code, notes, and snippets.

@marionette-of-u
Created March 21, 2014 18:01
Show Gist options
  • Select an option

  • Save marionette-of-u/9691930 to your computer and use it in GitHub Desktop.

Select an option

Save marionette-of-u/9691930 to your computer and use it in GitHub Desktop.
struct echo_server : public keisan_kun::http_server<>{
using base_type = keisan_kun::http_server<>;
bool proc(stream &s){
std::string str;
s >> str;
s << str;
return false;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment