Post
Topic
Board Announcements (Altcoins)
Re: [DVC]DevCoin - Official Thread - Moderated
by
sidhujag
on 22/12/2013, 22:26:13 UTC
I'm running a permanent DVC node at 192.241.155.73. I'd like it to be a seed node.

The people developing the shiny new daemon and client need to add it into whatever code they are using for seed nodes.

I am editting my old-devcoin-git and old-devcoin-qt-git to add a seventh name it will look up, dvcstable07.dvcnode.org, I do not know what their code does, whether it checks the dvcstable nodes on the dvcnode.org domain or not. Your IP address has been added to the dvcnodes.org DNS as dvcstable07.

Also who-ever controls the DNS for devtome.com needs to add it into their own dvcnode## hostnames in their DNS, my code so far only looks for dvcnode01 through dvcnode05 on that domain as I have seen no notification that they have added any more nodes than the five. (In fact when first I coded the code to look for five of them we did not even have have at the time, I just wanted the code to have a couple of spare lookups we could plug IP addressed into in the DNS later.)

-MarkM-


Done:

static const char *strMainNetDNSSeed[][14] = {
   {"public.txn.co.in", "dvc.public.txn.co.in"},
   {"21stcenturymoneytalk.org", "dvc-seed.21stcenturymoneytalk.org"},
   {"devtome.com", "dvcstable01.devtome.com"},
   {"dvcnode.org", "dvcstable01.dvcnode.org"},
   {"dvcnode.org", "dvcstable02.dvcnode.org"},
   {"dvcnode.org", "dvcstable03.dvcnode.org"},
   {"dvcnode.org", "dvcstable04.dvcnode.org"},
   {"dvcnode.org", "dvcstable05.dvcnode.org"},
   {"dvcnode.org", "dvcstable06.dvcnode.org"),
   {"dvcnode.org", "dvcstable07.dvcnode.org"),
   {"dvcnode.com", "node01.dvcnode.com"},
   {"dvcnode.com", "node02.dvcnode.com"},
   {"dvcnode.com", "node03.dvcnode.com"},
    {NULL, NULL}
};

I assume you have dvcstable06 if you added it to dvcstable07. I went through the list based on old devcoin code and the seed nodes on devtome and added all of them into my dnsseeds structure above. This should give us maximum connections.