Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(823)

Unified Diff: test_http_server.cc

Issue 4667002: AU: Change test http server port from 8080 to 8088. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/update_engine.git@master
Patch Set: whitespace Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « subprocess_unittest.cc ('k') | test_http_server.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test_http_server.cc
diff --git a/test_http_server.cc b/test_http_server.cc
index de5c619cd694099a0752e3ff1f7fa2eb0a99da0c..6a919d5cb9d727d039f839c82f531382af832611 100644
--- a/test_http_server.cc
+++ b/test_http_server.cc
@@ -42,7 +42,7 @@ struct HttpRequest {
};
namespace {
-const int kPort = 8080; // hardcoded to 8080 for now
+const int kPort = 8088; // hardcoded for now
const int kBigLength = 100000;
const int kMediumLength = 1000;
}
@@ -262,7 +262,7 @@ using namespace chromeos_update_engine;
int main(int argc, char** argv) {
// Ignore SIGPIPE on write() to sockets.
signal(SIGPIPE, SIG_IGN);
-
+
socklen_t clilen;
struct sockaddr_in server_addr;
struct sockaddr_in client_addr;
« no previous file with comments | « subprocess_unittest.cc ('k') | test_http_server.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698