Home | History | Annotate | Download | only in microhttpd

Lines Matching defs:max

833   size_t max;
847 max = pp->buffer_size - pp->buffer_pos;
848 if (max > post_data_len - poff)
849 max = post_data_len - poff;
850 memcpy (&buf[pp->buffer_pos], &post_data[poff], max);
851 poff += max;
852 pp->buffer_pos += max;
853 if ((max == 0) && (state_changed == 0) && (poff < post_data_len))