~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzleclient/pack.c

  • Committer: Brian Aker
  • Date: 2009-02-08 12:39:10 UTC
  • mfrom: (840.1.21 devel)
  • Revision ID: brian@tangent.org-20090208123910-gaodow8xvkw9ed4l
Merging Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <stdint.h>
24
24
 
25
25
/* Get the length of next field. Change parameter to point at fieldstart */
26
 
uint32_t net_field_length(unsigned char **packet)
 
26
uint32_t drizzleclient_net_field_length(unsigned char **packet)
27
27
{
28
28
  register unsigned char *pos= (unsigned char *)*packet;
29
29
  if (*pos < 251)
51
51
}
52
52
 
53
53
/* The same as above but returns int64_t */
54
 
uint64_t net_field_length_ll(unsigned char **packet)
 
54
uint64_t drizzleclient_drizzleclient_net_field_length_ll(unsigned char **packet)
55
55
{
56
56
  register unsigned char *pos= *packet;
57
57
  if (*pos < 251)
86
86
  Store an integer with simple packing into a output package
87
87
 
88
88
  SYNOPSIS
89
 
    net_store_length()
 
89
    drizzleclient_net_store_length()
90
90
    pkg      Store the packed integer here
91
91
    length    integers to store
92
92
 
99
99
   Position in 'pkg' after the packed length
100
100
*/
101
101
 
102
 
unsigned char *net_store_length(unsigned char *packet, uint64_t length)
 
102
unsigned char *drizzleclient_net_store_length(unsigned char *packet, uint64_t length)
103
103
{
104
104
  if (length < (uint64_t) 251LL)
105
105
  {