~ps10gel/ubuntu/xenial/trafficserver/6.2.0

« back to all changes in this revision

Viewing changes to proxy/MuxVC.cc

  • Committer: Package Import Robot
  • Author(s): Aron Xu
  • Date: 2013-05-09 01:00:04 UTC
  • mto: (1.1.11) (5.3.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: package-import@ubuntu.com-20130509010004-9fqq9n0adseg3f8w
Tags: upstream-3.3.2
ImportĀ upstreamĀ versionĀ 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
const int MUX_LOCK_RETRY = HRTIME_MSECONDS(10);
43
43
const int MUX_MAX_DATA_SIZE = USHRT_MAX - sizeof(MuxMessage);
44
44
 
45
 
#define MIN(x,y) (x <= y) ? x : y;
46
 
#define MAX(x,y) (x >= y) ? x : y;
47
 
 
48
45
#define MUX_MAX_BYTES_SLOT 32768
49
46
#define MUX_MAX_BYTES_BANK 32768
50
47
#define MUX_SMALL_BLOCK_SIZE 256