*** empty log message ***

svn path=/trunk/boinc/; revision=4262
This commit is contained in:
David Anderson 2004-09-28 22:48:42 +00:00
parent 0e62e4d95c
commit 8db9c80599
3 changed files with 8 additions and 0 deletions

View File

@ -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

View File

@ -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;
}

View File

@ -179,6 +179,7 @@ class MESSAGE {
public:
std::string project;
int priority;
int seqno;
int timestamp;
std::string body;