URI: 
       tRename bootstrapnode to node - ratox - FIFO based tox client
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 240c26e52840a5422ee838957fb0d31286395a65
   DIR parent b58afafbe3e55386bb6f1a339fa117d872cd8602
  HTML Author: sin <sin@2f30.org>
       Date:   Mon, 15 Sep 2014 17:37:17 +0100
       
       Rename bootstrapnode to node
       
       Diffstat:
         M config.def.h                        |       2 +-
         M ratatox.c                           |       8 ++++----
       
       2 files changed, 5 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/config.def.h b/config.def.h
       t@@ -1,6 +1,6 @@
        /* See LICENSE file for copyright and license details. */
        
       -static struct bootstrapnode bootstrapnodes[] = {
       +static struct node nodes[] = {
                {
                        "95.85.13.245",
                        33445,
   DIR diff --git a/ratatox.c b/ratatox.c
       t@@ -23,7 +23,7 @@
        #define LEN(x) (sizeof (x) / sizeof *(x))
        #define DATAFILE "ratatox.data"
        
       -struct bootstrapnode {
       +struct node {
                const char *addr;
                uint16_t port;
                uint8_t key[TOX_CLIENT_ID_SIZE];
       t@@ -438,11 +438,11 @@ toxinit(void)
        static int
        toxconnect(void)
        {
       -        struct bootstrapnode *bn;
       +        struct node *bn;
                size_t i;
        
       -        for (i = 0; i < LEN(bootstrapnodes); i++) {
       -                bn = &bootstrapnodes[i];
       +        for (i = 0; i < LEN(nodes); i++) {
       +                bn = &nodes[i];
                        tox_bootstrap_from_address(tox, bn->addr, bn->port, bn->key);
                }
                return 0;