mirror of https://github.com/BOINC/boinc.git
allow messaging and logging
git-svn-id: svn+ssh://cvs.lpds.sztaki.hu/var/lib/svn/szdg/dcapi/trunk@739 a7169a2c-3604-0410-bc95-c702d8d87f7a
This commit is contained in:
parent
f53d74f466
commit
49f9a33be1
|
@ -20,14 +20,14 @@
|
|||
/* Determines the maximum allowed message length. */
|
||||
int DC_getMaxMessageSize(void)
|
||||
{
|
||||
return(0);
|
||||
return(16384);
|
||||
}
|
||||
|
||||
|
||||
/* Determines the maximum number of sub-results. */
|
||||
int DC_getMaxSubresults(void)
|
||||
{
|
||||
return(0);
|
||||
return(100);
|
||||
}
|
||||
|
||||
|
||||
|
@ -36,7 +36,7 @@ unsigned DC_getGridCapabilities(void)
|
|||
{
|
||||
int cap;
|
||||
|
||||
cap= DC_GC_STDOUT | DC_GC_STDERR;
|
||||
cap= DC_GC_STDOUT | DC_GC_STDERR | DC_GC_MESSAGING | DC_GC_LOG;
|
||||
|
||||
return(cap);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue