mirror of
https://github.com/servalproject/serval-dna.git
synced 2025-01-17 18:29:46 +00:00
added note to explain why packetSetSid() has no prototype (deprecated)
This commit is contained in:
parent
dfb8d0d482
commit
e41da4322e
1
client.c
1
client.c
@ -451,6 +451,7 @@ int writeItem(char *sid,int var_id,int instance,unsigned char *value,
|
|||||||
/* Prepare the request packet to write the variable */
|
/* Prepare the request packet to write the variable */
|
||||||
if (packetMakeHeader(packet,8000,&packet_len,NULL,CRYPT_SIGNED|CRYPT_CIPHERED)) return -1;
|
if (packetMakeHeader(packet,8000,&packet_len,NULL,CRYPT_SIGNED|CRYPT_CIPHERED)) return -1;
|
||||||
bcopy(&packet[OFS_TRANSIDFIELD],transaction_id,TRANSID_SIZE);
|
bcopy(&packet[OFS_TRANSIDFIELD],transaction_id,TRANSID_SIZE);
|
||||||
|
#warning packetSetSid has been deprecated, which is why we have removed the prototype.
|
||||||
if (packetSetSid(packet,8000,&packet_len,sid)) return -1;
|
if (packetSetSid(packet,8000,&packet_len,sid)) return -1;
|
||||||
if (packetAddVariableWrite(packet,8000,&packet_len,var_id,instance,
|
if (packetAddVariableWrite(packet,8000,&packet_len,var_id,instance,
|
||||||
value,value_start,value_length,flags)) return -1;
|
value,value_start,value_length,flags)) return -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user