MCPcopy Create free account
hub / github.com/apache/cloudstack / iptables_chain_name

Function iptables_chain_name

scripts/vm/network/security_group.py:1052–1055  ·  view source on GitHub ↗
(vm_name)

Source from the content-addressed store, hash-verified

1050
1051#iptables chain max len 29 char and it is appended with other names like -eg,-def
1052def iptables_chain_name(vm_name):
1053 if len(vm_name) > 25:
1054 vm_name = vm_name[0:24]
1055 return vm_name
1056
1057
1058def egress_chain_name(vm_name):

Calls

no outgoing calls

Tested by

no test coverage detected