blob: d86e5ebc814a6244318ee0912552e09883b72507 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- netwerk/base/src/nsSocketTransport.h.orig Sat Feb 2 11:45:25 2002
+++ netwerk/base/src/nsSocketTransport.h Thu Mar 21 12:24:26 2002
@@ -208,6 +208,8 @@
nsresult doReadWrite(PRInt16 aSelectFlags);
nsresult doResolveHost();
+ PRBool TryNextAddress();
+
void CompleteAsyncRead();
void CompleteAsyncWrite();
@@ -378,7 +380,7 @@
void SetSocket(PRFileDesc *aSock) { mSock = aSock; }
PRUint32 GetOffset() { return mOffset; }
- void SetOffset(PRUint32 o) { mOffset = o; }
+ void SetOffset(PRUint32 offset) { mOffset = offset; }
PRBool GotWouldBlock() { return mError == PR_WOULD_BLOCK_ERROR; }
PRBool GotError() { return mError != 0; }
PRErrorCode GetError() { return mError; }
|