MultiHardenInterfaces is a type for an array of HardenInterfaces.
| 29 | |
| 30 | // MultiHardenInterfaces is a type for an array of HardenInterfaces. |
| 31 | type MultiHardenInterfaces struct { |
| 32 | hardenInterfaces []HardenInterface |
| 33 | shortName string |
| 34 | longName string |
| 35 | description string |
| 36 | hardenByDefault bool |
| 37 | } |
| 38 | |
| 39 | // Harden hardens (if harden == true) or restores (if harden == false) |
| 40 | // MultiHardenInterfaces. |
nothing calls this directly
no outgoing calls
no test coverage detected