addr
This commit is contained in:
parent
49a366f381
commit
24e81f304b
2 changed files with 10 additions and 3 deletions
|
|
@ -54,7 +54,7 @@
|
||||||
//============</list of reserved keys>===========
|
//============</list of reserved keys>===========
|
||||||
|
|
||||||
//============<identity key>============
|
//============<identity key>============
|
||||||
#define ID_KEY 128
|
#define ID_KEY 123
|
||||||
//============</identity key>===========
|
//============</identity key>===========
|
||||||
|
|
||||||
//============<parameters>============
|
//============<parameters>============
|
||||||
|
|
|
||||||
9
post.h
9
post.h
|
|
@ -45,6 +45,7 @@ struct AddressBook {
|
||||||
|
|
||||||
//roots
|
//roots
|
||||||
list.push_back(Address(0xB4, 0xE6, 0x2D, 0x37, 0x3B, 0x90, "root/osc"));
|
list.push_back(Address(0xB4, 0xE6, 0x2D, 0x37, 0x3B, 0x90, "root/osc"));
|
||||||
|
list.push_back(Address(0x68, 0xC6, 0x3A, 0xD7, 0x4D, 0x97, "root(2)/osc"));
|
||||||
|
|
||||||
//green suitcase
|
//green suitcase
|
||||||
list.push_back(Address(0xF4, 0xCF, 0xA2, 0xED, 0xB4, 0x47, "cricket/124"));
|
list.push_back(Address(0xF4, 0xCF, 0xA2, 0xED, 0xB4, 0x47, "cricket/124"));
|
||||||
|
|
@ -60,7 +61,12 @@ struct AddressBook {
|
||||||
//roundlys
|
//roundlys
|
||||||
list.push_back(Address(0xF4, 0xCF, 0xA2, 0xED, 0xB4, 0x64, "roundly/2000"));
|
list.push_back(Address(0xF4, 0xCF, 0xA2, 0xED, 0xB4, 0x64, "roundly/2000"));
|
||||||
list.push_back(Address(0xF4, 0xCF, 0xA2, 0xED, 0xB8, 0x1E, "roundly/2001"));
|
list.push_back(Address(0xF4, 0xCF, 0xA2, 0xED, 0xB8, 0x1E, "roundly/2001"));
|
||||||
//
|
|
||||||
|
//buoyflys
|
||||||
|
list.push_back(Address(0x80, 0x7D, 0x3A, 0x58, 0x80, 0x30, "cricket/121"));
|
||||||
|
list.push_back(Address(0x84, 0xCC, 0xA8, 0xAA, 0x4A, 0xCC, "cricket/122"));
|
||||||
|
list.push_back(Address(0xF4, 0xCF, 0xA2, 0xED, 0xB3, 0xD4, "cricket/123"));
|
||||||
|
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
AddressBook(String booktitle) {
|
AddressBook(String booktitle) {
|
||||||
|
|
@ -73,6 +79,7 @@ struct AddressBook {
|
||||||
//
|
//
|
||||||
if (booktitle == "root") {
|
if (booktitle == "root") {
|
||||||
list.push_back(Address(0xB4, 0xE6, 0x2D, 0x37, 0x3B, 0x90, "root/osc"));
|
list.push_back(Address(0xB4, 0xE6, 0x2D, 0x37, 0x3B, 0x90, "root/osc"));
|
||||||
|
list.push_back(Address(0x68, 0xC6, 0x3A, 0xD7, 0x4D, 0x97, "root(2)/osc"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private:
|
private:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue