mirror of
https://github.com/tim-beatham/smegmesh.git
synced 2025-06-25 22:41:24 +02:00
81-seperateprocesses-into-independent-processes
- Fixed errors
This commit is contained in:
parent
f9b8b85ec3
commit
a0e7a4a644
@ -244,6 +244,6 @@ func NewGraph(label string, graphType GraphType) *RootGraph {
|
|||||||
Label: label,
|
Label: label,
|
||||||
clusters: map[string]*Cluster{},
|
clusters: map[string]*Cluster{},
|
||||||
nodes: make(map[string]*Node),
|
nodes: make(map[string]*Node),
|
||||||
edges: make(map[string]Edge)
|
edges: make(map[string]Edge),
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -5,6 +5,7 @@ import (
|
|||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/rpc"
|
"net/rpc"
|
||||||
|
ipcRPC "net/rpc"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/tim-beatham/smegmesh/pkg/ctrlserver"
|
"github.com/tim-beatham/smegmesh/pkg/ctrlserver"
|
||||||
@ -88,7 +89,6 @@ type PutDescriptionArgs struct {
|
|||||||
MeshId string
|
MeshId string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// GetMeshReply: ipc reply to get the mesh network
|
// GetMeshReply: ipc reply to get the mesh network
|
||||||
type GetMeshReply struct {
|
type GetMeshReply struct {
|
||||||
Nodes []ctrlserver.MeshNode
|
Nodes []ctrlserver.MeshNode
|
||||||
@ -132,11 +132,11 @@ type ClientIpc interface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type SmegmeshIpc struct {
|
type SmegmeshIpc struct {
|
||||||
client *ipc.Client
|
client *ipcRPC.Client
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewClientIpc() (*SmegmeshIpc, error) {
|
func NewClientIpc() (*SmegmeshIpc, error) {
|
||||||
client, err := ipcRpc.DialHTTP("unix", SockAddr)
|
client, err := ipcRPC.DialHTTP("unix", SockAddr)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
Loading…
x
Reference in New Issue
Block a user