Rename HttpSession back to HttpConnection.

This commit is contained in:
Adam Gu
2018-06-04 13:07:04 +08:00
parent 9bf45e6ecb
commit 6a7aa4cc12
14 changed files with 67 additions and 67 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ bool CalcClient::Divide(double x, double y, double* result) {
}
bool CalcClient::NotExist(double x, double y, double* result) {
return Calc("notexist", "x", "y", x, y, result);
return Calc("not_exist", "x", "y", x, y, result);
}
void CalcClient::Init() {
+1 -1
View File
@@ -29,7 +29,7 @@ int main() {
// Try to call a non-existing operation.
if (calc.NotExist(x, y, &result)) {
printf("notexist: %.1f\n", result);
printf("not_exist: %.1f\n", result);
}
return 0;