crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs

httpheadernew.c (566B)


      1 /*************************************************************************
      2  * This file is part of Crosroads 1.23, a load balancer and fail over
      3  * utility for TCP. Copyright (c) Karel Kubat, distributed under GPL.
      4  * Visit http://crossroads.e-tunity.com for information.
      5  *************************************************************************/
      6 #include "crossroads.h"
      7 
      8 HttpHeader *http_header_new () {    
      9     HttpHeader *ret;
     10 
     11     /* Alloc & zero out */
     12     ret = xmalloc (sizeof (HttpHeader));
     13     memset (ret, 0, sizeof(HttpHeader));
     14     
     15     return (ret);
     16 }