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

Unified Diff: src/platform-linux.cc

Issue 42330: Add a close method to sockets (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 9 months 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 | « src/platform-freebsd.cc ('k') | src/platform-macos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform-linux.cc
===================================================================
--- src/platform-linux.cc (revision 1531)
+++ src/platform-linux.cc (working copy)
@@ -662,14 +662,8 @@
}
explicit LinuxSocket(int socket): socket_(socket) { }
+ virtual ~LinuxSocket() { Close(); }
- virtual ~LinuxSocket() {
- if (IsValid()) {
- // Close socket.
- close(socket_);
- }
- }
-
// Server initialization.
bool Bind(const int port);
bool Listen(int backlog) const;
@@ -678,6 +672,9 @@
// Client initialization.
bool Connect(const char* host, const char* port);
+ // Close.
+ bool Close();
+
// Data Transimission
int Send(const char* data, int len) const;
int Receive(char* data, int len) const;
@@ -753,6 +750,17 @@
}
+bool LinuxSocket::Close() {
+ if (IsValid()) {
+ // Close socket.
+ int status = close(socket_);
+ socket_ = -1;
+ return status == 0;
+ }
+ return true;
+}
+
+
int LinuxSocket::Send(const char* data, int len) const {
int status = send(socket_, data, len, 0);
return status;
« no previous file with comments | « src/platform-freebsd.cc ('k') | src/platform-macos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698