add timeout processing timestamp at start of read

r3024 | dcl | 2010-09-14 11:24:41 +1000 (Tue, 14 Sep 2010) | 1 line
This commit is contained in:
Douglas Clowes
2010-09-14 11:24:41 +10:00
parent 8263b6916c
commit 88d8ff904f

View File

@@ -157,6 +157,11 @@ int OxfordProtHandler(Ascon *a) {
ret = OxfordWriting(a);
return ret;
break;
case AsconReadStart:
a->start = DoubleTime();
ret = AsconStdHandler(a);
return ret;
break;
case AsconReading:
ret = OxfordReading(a);
return ret;
@@ -164,6 +169,7 @@ int OxfordProtHandler(Ascon *a) {
default:
ret = AsconStdHandler(a);
return ret;
break;
}
return 1;
}