~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/pack.c

  • Committer: Monty Taylor
  • Date: 2008-11-16 23:47:43 UTC
  • mto: (584.1.10 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116234743-c38gmv0pa2kdefaj
BrokeĀ outĀ cached_item.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include "config.h"
 
20
#include "libdrizzle.h"
 
21
#include <libdrizzle/pack.h>
21
22
#include <drizzled/korr.h>
22
 
 
23
23
#include <stdint.h>
24
24
 
25
 
#include "pack.h"
26
 
 
27
 
namespace drizzle_protocol
28
 
{
29
 
 
30
25
/* Get the length of next field. Change parameter to point at fieldstart */
31
 
uint32_t drizzleclient_net_field_length(unsigned char **packet)
 
26
uint32_t net_field_length(unsigned char **packet)
32
27
{
33
28
  register unsigned char *pos= (unsigned char *)*packet;
34
29
  if (*pos < 251)
56
51
}
57
52
 
58
53
/* The same as above but returns int64_t */
59
 
uint64_t drizzleclient_drizzleclient_net_field_length_ll(unsigned char **packet)
 
54
uint64_t net_field_length_ll(unsigned char **packet)
60
55
{
61
56
  register unsigned char *pos= *packet;
62
57
  if (*pos < 251)
91
86
  Store an integer with simple packing into a output package
92
87
 
93
88
  SYNOPSIS
94
 
    drizzleclient_net_store_length()
 
89
    net_store_length()
95
90
    pkg      Store the packed integer here
96
91
    length    integers to store
97
92
 
104
99
   Position in 'pkg' after the packed length
105
100
*/
106
101
 
107
 
unsigned char *drizzleclient_net_store_length(unsigned char *packet, uint64_t length)
 
102
unsigned char *net_store_length(unsigned char *packet, uint64_t length)
108
103
{
109
104
  if (length < (uint64_t) 251LL)
110
105
  {
129
124
  return packet+8;
130
125
}
131
126
 
132
 
} /* namespace drizzle_protocol */