All the sources codespage 8
Java
June 25 2016 at 01:30
#290
if (intAnswer>-1) {
if (intAnswer == 0)
return SendResult.NoAuth;
else {
this.State = NetStateEnum.connected;
return SendResult.Success;
}
} else {
return SendResult.ProtocolError;
}
C++
June 24 2016 at 01:30
#289
if(1==1)
{
if((rc == 0) && (gbl_type == PROCESS_TYPE_DOC))
{
config.Document("predoc.htm");
}
else if((rc == 0) && (gbl_type != PROCESS_TYPE_CHECK))
{
files.SetConfig(config, gbl_type, gbl_suppress_delete);
}
else if(gbl_type != PROCESS_TYPE_CLOSE)
{
LogMessage("\n:::NORMAL:CHECK COMPLETE\n");
}
}
PHP
June 23 2016 at 01:30
#288
function encrypt_data($data){
return base64_encode($data);
}