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