OPNsense - FreeBSD source
Find a file
2013-06-18 02:00:50 +00:00
auth Import serf-1.2.1 2013-06-18 02:00:50 +00:00
buckets Import serf-1.2.1 2013-06-18 02:00:50 +00:00
build Import serf-1.2.1 2013-06-18 02:00:50 +00:00
buildconf Import serf-1.2.1 2013-06-18 02:00:50 +00:00
CHANGES Import serf-1.2.1 2013-06-18 02:00:50 +00:00
config.layout Import serf-1.2.1 2013-06-18 02:00:50 +00:00
configure Import serf-1.2.1 2013-06-18 02:00:50 +00:00
configure.in Import serf-1.2.1 2013-06-18 02:00:50 +00:00
context.c Import serf-1.2.1 2013-06-18 02:00:50 +00:00
design-guide.txt Import serf-1.2.1 2013-06-18 02:00:50 +00:00
incoming.c Import serf-1.2.1 2013-06-18 02:00:50 +00:00
LICENSE Import serf-1.2.1 2013-06-18 02:00:50 +00:00
Makefile.in Import serf-1.2.1 2013-06-18 02:00:50 +00:00
NOTICE Import serf-1.2.1 2013-06-18 02:00:50 +00:00
outgoing.c Import serf-1.2.1 2013-06-18 02:00:50 +00:00
README Import serf-1.2.1 2013-06-18 02:00:50 +00:00
serf.h Import serf-1.2.1 2013-06-18 02:00:50 +00:00
serf.mak Import serf-1.2.1 2013-06-18 02:00:50 +00:00
serf.pc.in Import serf-1.2.1 2013-06-18 02:00:50 +00:00
serf_bucket_types.h Import serf-1.2.1 2013-06-18 02:00:50 +00:00
serf_bucket_util.h Import serf-1.2.1 2013-06-18 02:00:50 +00:00
serf_private.h Import serf-1.2.1 2013-06-18 02:00:50 +00:00
serfmake Import serf-1.2.1 2013-06-18 02:00:50 +00:00
ssltunnel.c Import serf-1.2.1 2013-06-18 02:00:50 +00:00

Welcome to serf, a high-performance asynchronous HTTP client library.

The serf library is a C-based HTTP client library built upon the Apache
Portable Runtime (APR) library. It multiplexes connections, running the
read/write communication asynchronously. Memory copies and transformations are
kept to a minimum to provide high performance operation.

  * Status: http://code.google.com/p/serf/wiki/
  * Site: http://code.google.com/p/serf/
  * Code: http://serf.googlecode.com/svn/
  * Issues: http://code.google.com/p/serf/issues/list
  * Mail: serf-dev@googlegroups.com
  * People: Justin Erenkrantz, Greg Stein 

----

Quick guide for the impatient

  (Unix)
  % ./configure
  % make
  % make install

----

Building serf from a Subversion checkout (non-packaged releases)

We suggest that you try out 'serfmake'.

 % ./serfmake --prefix=/usr/local/serf --with-apr=/usr/local/apr install

If you want to use the autoconf build system and are using a Subversion
checkout, you need to run buildconf and have APR and APR-util sources handy.

 % ./buildconf --with-apr=/path/to/apr --with-apr-util=/path/to/apr-util
 (By default, buildconf will look in . and ../ for apr and apr-util.)

Then, you can use ./configure, make, etc.