Show
Ignore:
Timestamp:
03/01/08 02:43:28 (21 months ago)
Author:
dsallings
Message:

Auto-discover the protocol being spoken on a per-connection basis.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/binary/server/memcached.h

    r723 r732  
    186186    conn_mwrite,     /** writing out many items sequentially */ 
    187187    conn_bin_init,   /** Reinitializing a binary protocol connection */ 
     188    conn_negotiate,  /** Negotiating a protocol */ 
    188189}; 
    189190 
     
    201202    ascii_prot = 3, /* arbitrary value. */ 
    202203    ascii_udp_prot, 
    203     binary_prot 
     204    binary_prot, 
     205    negotiating_prot, /* Discovering the protocol */ 
    204206}; 
    205207