2015-09-29 18:51:33 +00:00
|
|
|
// Copyright 2015 CNI authors
|
2015-08-07 15:27:52 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package ipam
|
|
|
|
|
|
|
|
import (
|
2018-11-05 20:33:56 +00:00
|
|
|
"context"
|
2016-05-04 14:06:05 +00:00
|
|
|
"github.com/containernetworking/cni/pkg/invoke"
|
|
|
|
"github.com/containernetworking/cni/pkg/types"
|
2016-05-03 19:03:05 +00:00
|
|
|
)
|
|
|
|
|
2016-11-09 21:11:18 +00:00
|
|
|
func ExecAdd(plugin string, netconf []byte) (types.Result, error) {
|
2018-11-05 20:33:56 +00:00
|
|
|
return invoke.DelegateAdd(context.TODO(), plugin, netconf, nil)
|
2015-08-07 15:27:52 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 20:42:37 +00:00
|
|
|
func ExecCheck(plugin string, netconf []byte) error {
|
|
|
|
return invoke.DelegateCheck(context.TODO(), plugin, netconf, nil)
|
|
|
|
}
|
|
|
|
|
2015-08-07 15:27:52 +00:00
|
|
|
func ExecDel(plugin string, netconf []byte) error {
|
2018-11-05 20:33:56 +00:00
|
|
|
return invoke.DelegateDel(context.TODO(), plugin, netconf, nil)
|
2015-08-07 15:27:52 +00:00
|
|
|
}
|