diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-06-26 12:36:45 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-06-26 12:36:45 -0700 |
| commit | 57c7992c785ab2f69fb2ddffd6f48bfebd96cab8 (patch) | |
| tree | a3cf773ae17f9593c4787198bc17d9347ae9fe06 /controller/schema.sql.c | |
| parent | c287ae4d1d0cb6448e556dda2c5c98eee4898cfe (diff) | |
| download | infinitytier-57c7992c785ab2f69fb2ddffd6f48bfebd96cab8.tar.gz infinitytier-57c7992c785ab2f69fb2ddffd6f48bfebd96cab8.zip | |
GitHub issue #191 - kill intra-network multicast rate limits (which were not well supported or easily configurable anyway) -- this is really left over from the old collaborative multicast propagation algorithm. New algorithm (in for a while) has been sender-side replication in which sender "pays" all bandwidth, which intrinsically limits multicast.
Diffstat (limited to 'controller/schema.sql.c')
| -rw-r--r-- | controller/schema.sql.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/controller/schema.sql.c b/controller/schema.sql.c index f1c66358..1157facc 100644 --- a/controller/schema.sql.c +++ b/controller/schema.sql.c @@ -65,17 +65,6 @@ "\n"\ "CREATE INDEX Member_networkId_activeBridge ON Member(networkId, activeBridge);\n"\ "\n"\ -"CREATE TABLE MulticastRate (\n"\ -" networkId char(16) NOT NULL REFERENCES Network(id) ON DELETE CASCADE,\n"\ -" mgMac char(12) NOT NULL,\n"\ -" mgAdi integer NOT NULL DEFAULT(0),\n"\ -" preload integer NOT NULL,\n"\ -" maxBalance integer NOT NULL,\n"\ -" accrual integer NOT NULL\n"\ -");\n"\ -"\n"\ -"CREATE INDEX MulticastRate_networkId ON MulticastRate (networkId);\n"\ -"\n"\ "CREATE TABLE Relay (\n"\ " networkId char(16) NOT NULL REFERENCES Network(id) ON DELETE CASCADE,\n"\ " nodeId char(10) NOT NULL REFERENCES Node(id) ON DELETE CASCADE,\n"\ |
