~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/protocol.cc

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
bool Protocol::net_store_data(const unsigned char *from, size_t length)
36
36
{
37
37
  size_t packet_length= packet->length();
38
 
  /* 
 
38
  /*
39
39
     The +9 comes from that strings of length longer than 16M require
40
40
     9 bytes to be stored (see net_store_length).
41
41
  */
53
53
 
54
54
/*
55
55
  net_store_data() - extended version with character set conversion.
56
 
  
 
56
 
57
57
  It is optimized for short strings whose length after
58
58
  conversion is garanteed to be less than 251, which accupies
59
59
  exactly one byte to store length. It allows not to use
79
79
      For example, when converting from utf8 (mbmaxlen=3) to latin1,
80
80
      conv_length=300 means that the result length can vary between 100 to 300.
81
81
      length=100 needs one byte, length=300 needs to bytes.
82
 
      
 
82
 
83
83
      Thus conversion directly to "packet" is not worthy.
84
84
      Let's use "convert" as a temporary buffer.
85
85
    */
210
210
  @param session                Thread handler
211
211
  @param no_flush       Set to 1 if there will be more data to the client,
212
212
                    like in send_fields().
213
 
*/    
 
213
*/
214
214
 
215
215
static void
216
216
net_send_eof(Session *session, uint32_t server_status, uint32_t total_warn_count)
780
780
 
781
781
/**
782
782
  @todo
783
 
    Second_part format ("%06") needs to change when 
 
783
    Second_part format ("%06") needs to change when
784
784
    we support 0-6 decimals for time.
785
785
*/
786
786
 
811
811
 
812
812
 
813
813
/**
814
 
  @todo 
815
 
    Second_part format ("%06") needs to change when 
 
814
  @todo
 
815
    Second_part format ("%06") needs to change when
816
816
    we support 0-6 decimals for time.
817
817
*/
818
818