SF.net SVN: fclient: [131] trunk/sandbox/fcp/fcp2_0_types.py
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <ju...@us...> - 2008-02-04 03:16:16
|
Revision: 131
http://fclient.svn.sourceforge.net/fclient/?rev=131&view=rev
Author: jurner
Date: 2008-02-03 19:16:21 -0800 (Sun, 03 Feb 2008)
Log Message:
-----------
for completeness, added ClientHello to types
Modified Paths:
--------------
trunk/sandbox/fcp/fcp2_0_types.py
Modified: trunk/sandbox/fcp/fcp2_0_types.py
===================================================================
--- trunk/sandbox/fcp/fcp2_0_types.py 2008-02-04 03:14:49 UTC (rev 130)
+++ trunk/sandbox/fcp/fcp2_0_types.py 2008-02-04 03:16:21 UTC (rev 131)
@@ -332,7 +332,7 @@
def splitAll(self, paramName):
"""Splits a parameter name into its components
- @param (str) paramName: parameter name to split
+ @param paramName: (str) parameter name to split
@return: (list) components
"""
return paramName.split(self.ComponentSep)
@@ -340,7 +340,7 @@
def splitParamClass(self, paramName):
"""Splits the parameter class from a parameter name
- @param (str) paramName: parameter name to split
+ @param paramName: (str) parameter name to split
@return: (tuple) paramClass, tail
"""
return paramName.split(self.ComponentSep, 1)
@@ -565,6 +565,9 @@
'MaxTempSize': FcpTypeInt,
'Verbosity': FcpTypeInt,
},
+ 'ClientHello': {
+ 'ExpectedVersion': FcpTypeInt,
+ },
'ClientPut': {
'BinaryBlob': FcpTypeBool,
'DontCompress': FcpTypeBool,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|