aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/Networking/SkSockets.h
diff options
context:
space:
mode:
authorGravatar yangsu@google.com <yangsu@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-08-12 14:27:47 +0000
committerGravatar yangsu@google.com <yangsu@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-08-12 14:27:47 +0000
commitef7bdfac618f60e9edc9f42cd4661d563937e6d8 (patch)
tree3acb17216c4ede79d0c349182dfaca38e96803a1 /experimental/Networking/SkSockets.h
parent16edff2b1cbd80e36456138f8631711a585205ba (diff)
Added Debugger to Sample App, off by default
Removed CocoaDebugger from experimental Slight changes to SkOSMenu Bug fixes for NetPipeReader and DrawingBoard git-svn-id: http://skia.googlecode.com/svn/trunk@2102 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental/Networking/SkSockets.h')
-rw-r--r--experimental/Networking/SkSockets.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/experimental/Networking/SkSockets.h b/experimental/Networking/SkSockets.h
index 1f47a94028..0302426954 100644
--- a/experimental/Networking/SkSockets.h
+++ b/experimental/Networking/SkSockets.h
@@ -52,8 +52,8 @@ public:
* For blocking sockets, write will block indefinitely if the socket at the
* other end of the connection doesn't receive any data.
* NOTE: This method guarantees that all of the data will be sent unless
- * there was an error, so it might block temporarily when the write buffer
- * is full
+ * there was an error, so it may block temporarily when the write buffer is
+ * full
*/
int writePacket(void* data, size_t size, DataType type = kPipeAppend_type);
@@ -67,7 +67,7 @@ public:
* blocking sockets, read will block indefinitely if the socket doesn't
* receive any data.
* NOTE: This method guarantees that all the data in a logical packet will
- * be read so there might be temporary delays if it's waiting for parts of a
+ * be read so it may block temporarily if it's waiting for parts of a
* packet
*/
int readPacket(void (*onRead)(int cid, const void* data, size_t size,