implemented more stuff along with samples

This commit is contained in:
2025-08-14 22:59:38 +02:00
parent a09b04ab7a
commit f5b0ee026f
26 changed files with 2768 additions and 12 deletions

2
net.go
View File

@@ -64,8 +64,6 @@ func (ipc *I3ipc) readResponse() ([]byte, error) {
return nil, fmt.Errorf("failed to read header from ipc socket: %s", err)
}
// slog.Debug("got IPC header", "header", hex.EncodeToString(buf))
if string(buf[:6]) != IPC_MAGIC {
return nil, fmt.Errorf("got invalid response from IPC socket")
}