mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-12-26 17:05:42 +00:00
39 lines
855 B
Go
39 lines
855 B
Go
package tuntap
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/admin"
|
|
)
|
|
|
|
type GetTUNRequest struct{}
|
|
type GetTUNResponse map[string]TUNEntry
|
|
|
|
type TUNEntry struct {
|
|
MTU uint64 `json:"mtu"`
|
|
}
|
|
|
|
func (t *TunAdapter) getTUNHandler(req *GetTUNRequest, res *GetTUNResponse) error {
|
|
*res = GetTUNResponse{
|
|
t.Name(): TUNEntry{
|
|
MTU: t.MTU(),
|
|
},
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (t *TunAdapter) SetupAdminHandlers(a *admin.AdminSocket) {
|
|
_ = a.AddHandler("getTunTap", []string{}, func(in json.RawMessage) (interface{}, error) {
|
|
req := &GetTUNRequest{}
|
|
res := &GetTUNResponse{}
|
|
if err := json.Unmarshal(in, &req); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := t.getTUNHandler(req, res); err != nil {
|
|
return nil, err
|
|
}
|
|
return res, nil
|
|
})
|
|
_ = a.AddHandler("getNodeInfo", []string{"key"}, t.nodeinfo.nodeInfoAdminHandler)
|
|
}
|