2015-02-23
2015-02-23 13:54:12 by Martin Nilsson <nilsson@opera.com>
-
82a1a1be4d1cdee06ace8418eb34073225c91073
(24 lines)
(+10/-14)
[
Show
| Annotate
]
Branch: 8.1
Small cleanup.
120:
if (bytes > 0) {
sent += bytes;
} else if (sent < 0) {
- exit(17, "Failed to write data: %s\n", strerror(ssl->errno()));
+ exit(1, "Failed to write data: %s\n", strerror(ssl->errno()));
}
if (sent == sizeof(request)) {
ssl->set_write_callback(UNDEFINED);
164: Inside #if defined(HTTPS_CLIENT)
{
#ifdef HTTPS_CLIENT
Stdio.File con = Stdio.File();
- if (!con->connect(HOST, PORT)) {
- werror("Failed to connect to server: %s\n", strerror(con->errno()));
- return 17;
- }
+ if (!con->connect(HOST, PORT))
+ exit(1, "Failed to connect to server: %s\n", strerror(con->errno()));
+
Client(con);
- return -17;
+ return -1;
#else
SSL.Context ctx = MyContext();
224:
werror("Starting\n");
if (!port->bind(PORT, my_accept_callback))
- {
- Stdio.perror("");
- return 17;
- }
- else {
+ exit(1, "Failed to bind port %d.\n", PORT);
+
werror("Listening on port %d.\n", PORT);
- return -17;
- }
+ return -1;
#endif
}