mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4262
This commit is contained in:
parent
0e62e4d95c
commit
8db9c80599
|
@ -17846,3 +17846,9 @@ David 28 Sept 2004
|
|||
client/
|
||||
client_state.C
|
||||
cs_data.C
|
||||
|
||||
David 28 Sept 2004
|
||||
- parse message seqnos in GUI RPC client
|
||||
|
||||
lib/
|
||||
gui_rpc_client.C,h
|
||||
|
|
|
@ -437,6 +437,7 @@ int MESSAGE::parse(MIOFILE& in) {
|
|||
}
|
||||
else if (parse_int(buf, "<pri>", priority)) continue;
|
||||
else if (parse_int(buf, "<time>", timestamp)) continue;
|
||||
else if (parse_int(buf, "<seqno>", seqno)) continue;
|
||||
}
|
||||
return ERR_XML_PARSE;
|
||||
}
|
||||
|
|
|
@ -179,6 +179,7 @@ class MESSAGE {
|
|||
public:
|
||||
std::string project;
|
||||
int priority;
|
||||
int seqno;
|
||||
int timestamp;
|
||||
std::string body;
|
||||
|
||||
|
|
Loading…
Reference in New Issue