1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-01 12:59:47 +02:00

fix write

This commit is contained in:
lxsang 2019-12-19 09:52:56 +01:00
parent 457eefee25
commit 348dd45385
2 changed files with 4 additions and 5 deletions

View File

@ -299,10 +299,9 @@ int antd_send(void *src, const void* data, int len)
break;
}
}
break;
if(written == 0)
written = count;
break;
}
}
//source->attempt = 0;
@ -436,7 +435,7 @@ int antd_recv(void *src, void* data, int len)
break;
}
}
if(read ==0)
if(read = 0)
read = received;
break;
}

View File

@ -226,8 +226,8 @@ antd_task_t* antd_create_task(void* (*handle)(void*), void *data, void* (*callba
task->handle = handle;
task->callback = callback_of(callback);
task->priority = NORMAL_PRIORITY;
//task->type = HEAVY;
task->type = LIGHT;
task->type = HEAVY;
//task->type = LIGHT;
task->access_time = atime;
return task;
}