fix comments
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Sarah Jamie Lewis 2022-09-10 10:36:28 -07:00
parent 0f4c6de2e6
commit 8d2134c4db
1 changed files with 243 additions and 243 deletions

View File

@ -241,7 +241,7 @@ func (app *application) installProfile(profile peer.CwtchPeer) bool {
return false
}
// / ActivePeerEngine creates a peer engine for use with an ACN, should be called once the underlying ACN is online
// ActivePeerEngine creates a peer engine for use with an ACN, should be called once the underlying ACN is online
func (app *application) ActivePeerEngine(onion string, doListen, doPeers, doServers bool) {
profile := app.GetPeer(onion)
if profile != nil {
@ -258,7 +258,7 @@ func (app *application) ActivePeerEngine(onion string, doListen, doPeers, doServ
}
}
// / DeactivatePeerEngine shutsdown and cleans up a peer engine, should be called when an underlying ACN goes offline
// DeactivatePeerEngine shutsdown and cleans up a peer engine, should be called when an underlying ACN goes offline
func (app *application) DeactivatePeerEngine(onion string) {
if engine, exists := app.engines[onion]; exists {
engine.Shutdown()
@ -316,7 +316,7 @@ func (app *application) ShutdownPeer(onion string) {
app.shutdownPeer(onion)
}
// / shutdownPeer mutex unlocked helper shutdown peer
// shutdownPeer mutex unlocked helper shutdown peer
func (app *application) shutdownPeer(onion string) {
app.eventBuses[onion].Publish(event.NewEventList(event.ShutdownPeer, event.Identity, onion))
app.eventBuses[onion].Shutdown()