~ubuntu-branches/ubuntu/wily/trafficserver/wily

« back to all changes in this revision

Viewing changes to example/output-header/output-header.c

  • Committer: Package Import Robot
  • Author(s): Adam Conrad
  • Date: 2012-12-17 22:28:16 UTC
  • mfrom: (5.1.8 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20121217222816-7xwjsx5k76zkb63d
Tags: 3.2.0-1ubuntu1
* Revert FreeBSD strerror_r() fixes that give errors with glibc 2.16.
* Apply patch from Konstantinos Margaritis to define barriers on ARM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 *
29
29
 * The plugin simply prints all the incoming request headers
30
30
 *
31
 
 *
32
 
 *
33
 
 *   Note: tested on Solaris only.  Probably doesn't compile
34
 
 *    on NT.
 
31
 *   Note: tested on Solaris only.
35
32
 */
36
33
 
37
34
#include <stdio.h>
38
35
#include <string.h>
39
36
 
40
 
#if !defined (_WIN32)
41
37
#include <unistd.h>
42
 
#else
43
 
#include <windows.h>
44
 
#endif
45
38
 
46
39
#include <ts/ts.h>
47
40