Skip to content
Snippets Groups Projects
Commit 938846f9 authored by Josh Brooks's avatar Josh Brooks
Browse files

Add docstring

parent 994ee29a
No related branches found
No related tags found
3 merge requests!510Release,!325Support a single call for ud.NewOrLoad,!323Xx 4019/new or load alt ud
......@@ -121,9 +121,12 @@ type UdNetworkStatus interface {
// This may be nil, however UD may return an error in some cases (e.g. in a production level
// environment).
// - cert is the TLS certificate for the UD server this call will connect with.
// You may use the UD server run by the xx network team by using E2e.GetUdCertFromNdf.
// - contactFile is the data within a marshalled contact.Contact. This represents the
// contact file of the server this call will connect with.
// You may use the UD server run by the xx network team by using E2e.GetUdContactFromNdf.
// - address is the IP address of the UD server this call will connect with.
// You may use the UD server run by the xx network team by using E2e.GetUdAddressFromNdf.
//
// Returns
// - A Manager object which is registered to the specified alternate UD service.
......
......@@ -63,7 +63,7 @@ var udCmd = &cobra.Command{
jww.TRACE.Printf("[UD] Connected!")
address, cert, contactFile, err := getUdContactInfo(user)
cert, contactFile, address, err := getUdContactInfo(user)
if err != nil {
jww.FATAL.Panicf("Failed to load UD contact information from NDF: %+v", err)
}
......@@ -73,7 +73,7 @@ var udCmd = &cobra.Command{
jww.TRACE.Printf("[UD] Registering identity %v...", userToRegister)
userDiscoveryMgr, err := ud.NewOrLoad(user, user.GetComms(),
user.NetworkFollowerStatus, userToRegister, nil,
cert, address, contactFile)
cert, contactFile, address)
if err != nil {
jww.FATAL.Panicf("Failed to load or create new UD manager: %+v", err)
}
......@@ -254,10 +254,10 @@ var udCmd = &cobra.Command{
// getUdContactInfo is a helper function which retrieves the necessary information
// to contact UD.
func getUdContactInfo(user *xxdk.E2e) (cert, address, contactFile []byte, err error) {
func getUdContactInfo(user *xxdk.E2e) (cert, contactFile []byte, address string, err error) {
// Retrieve address
address = []byte(user.GetCmix().GetInstance().GetPartialNdf().
Get().UDB.Address)
address = string([]byte(user.GetCmix().GetInstance().GetPartialNdf().
Get().UDB.Address))
// Retrieve certificate
cert = []byte(user.GetCmix().GetInstance().GetPartialNdf().Get().UDB.Cert)
......@@ -266,7 +266,7 @@ func getUdContactInfo(user *xxdk.E2e) (cert, address, contactFile []byte, err er
udIdData := user.GetCmix().GetInstance().GetPartialNdf().Get().UDB.ID
udId, err := id.Unmarshal(udIdData)
if err != nil {
return nil, nil, nil, err
return nil, nil, "", err
}
// Retrieve DH Pub Key
......@@ -274,7 +274,7 @@ func getUdContactInfo(user *xxdk.E2e) (cert, address, contactFile []byte, err er
var udDhPubKey *cyclic.Int
err = udDhPubKey.UnmarshalJSON(udDhPubKeyData)
if err != nil {
return nil, nil, nil, err
return nil, nil, "", err
}
// Construct contact
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment