src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Security/Checks/generalBindAllInterfaces.py

branch
eric7
changeset 10683
779cda568acb
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10682:47be220abdaf 10683:779cda568acb
29 (checkBindAllInterfaces, ("S104",)), 29 (checkBindAllInterfaces, ("S104",)),
30 ], 30 ],
31 } 31 }
32 32
33 33
34 def checkBindAllInterfaces(reportError, context, config): # noqa: U100 34 def checkBindAllInterfaces(reportError, context, _config):
35 """ 35 """
36 Function to check for binding to all interfaces. 36 Function to check for binding to all interfaces.
37 37
38 @param reportError function to be used to report errors 38 @param reportError function to be used to report errors
39 @type func 39 @type func
40 @param context security context object 40 @param context security context object
41 @type SecurityContext 41 @type SecurityContext
42 @param config dictionary with configuration data 42 @param _config dictionary with configuration data (unused)
43 @type dict 43 @type dict
44 """ 44 """
45 if context.stringVal == "0.0.0.0": # secok 45 if context.stringVal == "0.0.0.0": # secok
46 reportError( 46 reportError(
47 context.node.lineno - 1, 47 context.node.lineno - 1,

eric ide

mercurial