]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2252] update docstring of _get_ipver_str() about accessing
authorNaoki Kambe <kambe@jprs.co.jp>
Mon, 18 Mar 2013 07:01:37 +0000 (16:01 +0900)
committerNaoki Kambe <kambe@jprs.co.jp>
Mon, 18 Mar 2013 10:27:25 +0000 (19:27 +0900)
src/bin/xfrin/xfrin.py.in

index 9dfcb5d2f7a55ba4cacc0ed829e01fa09940665b..81aef52a463bff9f2727e5d96242635b4dffed38 100755 (executable)
@@ -895,7 +895,8 @@ class XfrinConnection(asyncore.dispatcher):
 
     def _get_ipver_str(self):
         """Returns a 'v4' or 'v6' string representing a IP version
-        depending on the socket family"""
+        depending on the socket family. This is for an internal use
+        only."""
         if self.socket.family == socket.AF_INET:
             return 'v4'
         elif self.socket.family == socket.AF_INET6: