CreateNetworkRequest is sent by the daemon when a network needs to be created
| 81 | |
| 82 | // CreateNetworkRequest is sent by the daemon when a network needs to be created |
| 83 | type CreateNetworkRequest struct { |
| 84 | NetworkID string |
| 85 | Options map[string]interface{} |
| 86 | IPv4Data []*IPAMData |
| 87 | IPv6Data []*IPAMData |
| 88 | } |
| 89 | |
| 90 | // IPAMData contains IPv4 or IPv6 addressing information |
| 91 | type IPAMData struct { |
nothing calls this directly
no outgoing calls
no test coverage detected