()
| 408 | } |
| 409 | |
| 410 | func (device *Device) IpcGet() (string, error) { |
| 411 | buf := new(strings.Builder) |
| 412 | if err := device.IpcGetOperation(buf); err != nil { |
| 413 | return "", err |
| 414 | } |
| 415 | return buf.String(), nil |
| 416 | } |
| 417 | |
| 418 | func (device *Device) IpcSet(uapiConf string) error { |
| 419 | return device.IpcSetOperation(strings.NewReader(uapiConf)) |
nothing calls this directly
no test coverage detected