summaryrefslogtreecommitdiff
path: root/cmd/netdummy/main.go
blob: cdc85e4167770f316f4f557ba92b089246da97c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Copyright (C) 2019-2023 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand.  If not, see <https://www.gnu.org/licenses/>.

package main

import (
	"flag"
	"fmt"
	"os"
	"time"

	"github.com/algorand/go-deadlock"

	"github.com/algorand/go-algorand/config"
	"github.com/algorand/go-algorand/logging"
	"github.com/algorand/go-algorand/network"
	"github.com/algorand/go-algorand/protocol"
)

var serverAddress = flag.String("server", "", "Server address (host:port)")
var numClients = flag.Int("num", 1, "Number of connections")
var genesisID = flag.String("genesis", "perfnet-v23", "Genesis ID")
var networkID = flag.String("network", "perfnet", "Network ID")

func main() {
	deadlock.Opts.Disable = true

	flag.Parse()

	conf, _ := config.LoadConfigFromDisk("/dev/null")
	conf.DNSBootstrapID = ""

	log := logging.Base()
	log.SetLevel(logging.Debug)
	log.SetOutput(os.Stderr)

	var nodes []network.GossipNode
	for i := 0; i < *numClients; i++ {
		n, _ := network.NewWebsocketGossipNode(log,
			conf,
			[]string{*serverAddress},
			*genesisID,
			protocol.NetworkID(*networkID))
		n.Start()
		nodes = append(nodes, n)
	}

	fmt.Printf("Created %d clients\n", *numClients)
	for {
		time.Sleep(time.Second)
	}
}