Commit 9e1a6cb6 authored by chenhaowen's avatar chenhaowen

fix confict

parents 7fc47cbd 40f1b165
......@@ -68,6 +68,7 @@ static void gen_ka2_checksum(uint8_t *data, int len, uint8_t *checksum);
static uint32_t drcomCRC32(uint8_t *data, int len);
static void print_as_hex(uint8_t *buf, int len);
static void short_wait_sleep(int second);
/****local functions****/
......@@ -232,13 +233,10 @@ HEART_BEAT_START:
rand_num[0] = rand_tmp / 0x100;
rand_num[1] = rand_tmp % 0x100;
int i;
for (i=0; i<3; i++)
{
if (drcom_config.exit)
return 0;
sleep(1);
}
<<<<<<< HEAD
=======
short_wait_sleep(3);
>>>>>>> master
while (1)
{
length = make_keep_alive2_pkt1(pkt_data, kp2_cnt, ka2_flag, rand_num, ka2_key);
......@@ -315,12 +313,10 @@ HEART_BEAT_START:
kp2_cnt++;
for (i=0; i<17; i++)
{
if (drcom_config.exit)
return 0;
sleep(1);
}
<<<<<<< HEAD
=======
short_wait_sleep(17);
>>>>>>> master
}
#ifdef WIN32
closesocket(client_sockfd);
......@@ -595,3 +591,7 @@ void gen_ka2_checksum(uint8_t *data, int len, uint8_t *checksum)
memcpy(checksum, (uint8_t*)&checksum_tmp, 4);
}
static void short_wait_sleep(int second){
for(int i = second; i > 0 && !drcom_config.exit; i--)
sleep(1);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment