Skip to content
Snippets Groups Projects
Commit 16d535d9 authored by Jono Wenger's avatar Jono Wenger
Browse files

Make fields of ConnectionServer public

parent 1c2ec2c6
Branches
Tags
1 merge request!510Release
...@@ -42,7 +42,7 @@ func TestConnectWithAuthentication(t *testing.T) { ...@@ -42,7 +42,7 @@ func TestConnectWithAuthentication(t *testing.T) {
myRsaPrivKey, err := rsa.LoadPrivateKeyFromPem(getPrivKey()) myRsaPrivKey, err := rsa.LoadPrivateKeyFromPem(getPrivKey())
if err != nil { if err != nil {
t.Fatalf("Faled to load private key: %v", err) t.Fatalf("Failed to load private key: %v", err)
} }
// Construct client ID the proper way as server will need to verify it // Construct client ID the proper way as server will need to verify it
......
...@@ -191,8 +191,8 @@ func StartServer(identity xxdk.ReceptionIdentity, cb Callback, net *xxdk.Cmix, ...@@ -191,8 +191,8 @@ func StartServer(identity xxdk.ReceptionIdentity, cb Callback, net *xxdk.Cmix,
// ConnectionServer contains // ConnectionServer contains
type ConnectionServer struct { type ConnectionServer struct {
e2e *xxdk.E2e E2e *xxdk.E2e
cl *ConnectionList Cl *ConnectionList
} }
// handler provides an implementation for the Connection interface. // handler provides an implementation for the Connection interface.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment