epoc32/include/tcp_hdr.h
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
     1.1 --- a/epoc32/include/tcp_hdr.h	Wed Mar 31 12:27:01 2010 +0100
     1.2 +++ b/epoc32/include/tcp_hdr.h	Wed Mar 31 12:33:34 2010 +0100
     1.3 @@ -1,9 +1,9 @@
     1.4  // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5  // All rights reserved.
     1.6  // This component and the accompanying materials are made available
     1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     1.8 +// under the terms of "Eclipse Public License v1.0"
     1.9  // which accompanies this distribution, and is available
    1.10 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
    1.11 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.12  //
    1.13  // Initial Contributors:
    1.14  // Nokia Corporation - initial contribution.
    1.15 @@ -125,9 +125,9 @@
    1.16    	inline TInt Unknown() const		  { return iUnknown; }
    1.17    	inline void ClearUnknown()		  { iUnknown = 0; }
    1.18    
    1.19 -  	/// Query window scale option from TCP header options.
    1.20 -  	/// Wscale == 1 means scale factor 1, i.e. shift count of 0 is used in TCP option.
    1.21 -  	/// Wscale == 0 means that wscale option is not used in TCP header.
    1.22 +  	// Query window scale option from TCP header options.
    1.23 +  	// Wscale == 1 means scale factor 1, i.e. shift count of 0 is used in TCP option.
    1.24 +  	// Wscale == 0 means that wscale option is not used in TCP header.
    1.25    	inline TUint WindowScale() const		{ return iWscale; }
    1.26  
    1.27    	inline void SetWindowScale(TUint8 aWscale)	{ iWscale = aWscale; }
    1.28 @@ -171,8 +171,8 @@
    1.29    	TBool	              iTimeStamps;
    1.30    	TBool	              iSackOk;
    1.31    	TBool               iSuppressSack;
    1.32 -  	TUint				iWscale;	///< Window scale option [RFC 1323].
    1.33 -  	TUint32				iFlags;	///< ETrue if options are to be aligned.
    1.34 +  	TUint				iWscale;	//< Window scale option [RFC 1323].
    1.35 +  	TUint32				iFlags;	//< ETrue if options are to be aligned.
    1.36  	};
    1.37  
    1.38  
    1.39 @@ -267,13 +267,13 @@
    1.40  		return i[13] & KTcpCtlURG;
    1.41  		}
    1.42  
    1.43 -	/// ECN Echo flag [RFC 3168].
    1.44 +	// ECN Echo flag [RFC 3168].
    1.45  	inline TInt ECE() const
    1.46  		{
    1.47  		return i[13] & KTcpCtlECE;
    1.48  		}
    1.49  
    1.50 -	/// ECN: Congestion Window Reduced [RFC 3168].
    1.51 +	// ECN: Congestion Window Reduced [RFC 3168].
    1.52  	inline TInt CWR() const
    1.53  		{
    1.54  		return i[13] & KTcpCtlCWR;
    1.55 @@ -377,13 +377,13 @@
    1.56  		i[13] |= KTcpCtlURG;
    1.57  		}
    1.58  		
    1.59 -	/// Set ECN Echo flag [RFC 3168].
    1.60 +	// Set ECN Echo flag [RFC 3168].
    1.61  	inline void SetECE()
    1.62  		{
    1.63  		i[13] |= KTcpCtlECE;
    1.64  		}
    1.65  		
    1.66 -	/// Set ECN Congestion Window Reduced [RFC 3168].
    1.67 +	// Set ECN Congestion Window Reduced [RFC 3168].
    1.68  	inline void SetCWR()
    1.69  		{
    1.70  		i[13] |= KTcpCtlCWR;