mirror of
https://git.zx2c4.com/wireguard-go
synced 2024-11-15 01:05:15 +01:00
device: add UAPI helper methods
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
parent
c27bf0bf4b
commit
60b271ff95
@ -7,6 +7,7 @@ package device
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
|
"bytes"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
@ -32,7 +33,7 @@ func (s IPCError) ErrorCode() int64 {
|
|||||||
return s.int64
|
return s.int64
|
||||||
}
|
}
|
||||||
|
|
||||||
func (device *Device) IpcGetOperation(socket *bufio.Writer) error {
|
func (device *Device) IpcGetOperation(w io.StringWriter) error {
|
||||||
lines := make([]string, 0, 100)
|
lines := make([]string, 0, 100)
|
||||||
send := func(line string) {
|
send := func(line string) {
|
||||||
lines = append(lines, line)
|
lines = append(lines, line)
|
||||||
@ -98,7 +99,7 @@ func (device *Device) IpcGetOperation(socket *bufio.Writer) error {
|
|||||||
// send lines (does not require resource locks)
|
// send lines (does not require resource locks)
|
||||||
|
|
||||||
for _, line := range lines {
|
for _, line := range lines {
|
||||||
_, err := socket.WriteString(line + "\n")
|
_, err := w.WriteString(line + "\n")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return &IPCError{ipc.IpcErrorIO}
|
return &IPCError{ipc.IpcErrorIO}
|
||||||
}
|
}
|
||||||
@ -396,6 +397,24 @@ func (device *Device) IpcSetOperation(r io.Reader) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
func (device *Device) IpcGet() (string, error) {
|
||||||
|
buf := new(bytes.Buffer)
|
||||||
|
writer := bufio.NewWriter(buf)
|
||||||
|
if err := device.IpcGetOperation(writer); err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
if err := writer.Flush(); err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
return buf.String(), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (device *Device) IpcSet(uapiConf string) error {
|
||||||
|
return device.IpcSetOperation(bufio.NewReader(strings.NewReader(uapiConf)))
|
||||||
|
}
|
||||||
|
|
||||||
func (device *Device) IpcHandle(socket net.Conn) {
|
func (device *Device) IpcHandle(socket net.Conn) {
|
||||||
|
|
||||||
// create buffered read/writer
|
// create buffered read/writer
|
||||||
|
Loading…
Reference in New Issue
Block a user