1
0
mirror of https://github.com/deavminet/dnetd synced 2024-09-21 09:43:37 +02:00
This commit is contained in:
Tristan B. Kildaire 2021-01-29 19:49:39 +02:00
parent 8116861986
commit 7c82b938b8

View File

@ -10,6 +10,32 @@ import std.socket : Address;
import core.thread : Thread;
/**
* Link manager
*
* Given a set of original DLink objects, it will open connections to them
* It also facilitates DConnection making a call to `.addLink` here when an
* inbound peering request comes in
*/
public final class DLinkManager
{
this(DServer server, DLink[] seedLinks)
{
}
}
/**
* Represents a server link
*
@ -99,38 +125,32 @@ public final class DMeyer
/* TODO: Open connections to all servers we are yet to open a connection to (check the `links` array) */
}
/**
* Locks the link list
*/
private void openAllOutboundConnections()
{
}
/* Initialize locks */
private void initLocks()
{
linksMutex = new Mutex();
}
// /* Attach a direct peer */
// public void attachDirectPeer(DConnection peer)
// {
// /* TODO: Add to `directPeers` */
// linksMutex.lock();
/**
* Adds a peer to the links list
*/
public void addLink(DLink newLink)
{
/* Lock the list */
linksMutex.lock();
// links ~= new DLink(peer);
// writeln("Attached direct peer: "~to!(string)(peer));
// linksMutex.unlock();
// }
/* Get a list of all servers we know of */
// public DLink getLink(DConnection peer)
// {
// DLink link;
// linksMutex.lock();
// linksMutex.unlock();
// return link;
// }
/* Add the link */
links ~= newLink;
/* Unlock the list */
linksMutex.unlock();
}
}