getKey.range 283 字节
Newer Older
W
wangguibao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
struct server_t{
	string ip = ip(), length(20);
	uint16_t port = range(1, 1023);
	string host = length(100);
};

server_t server;
string position = length(100);
uint32_t height[10] = range(0,10);

struct company_t{
	string name = length(100);
	server_t svr[];
};

company_t company;