diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-04-18 19:04:40 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-04-18 19:04:40 +0000 |
commit | b432ed11ba19c86df023ab59831b3c9f06a92101 (patch) | |
tree | 012a6a8c186ae5da2f98d6feb8a2f5525ee65bbb /security/distcache/files/patch-proto_fd.c | |
parent | - Sort properly. I should repeat english alphabet. (diff) |
Distributed session caching tools and APIs, primarily for SSL/TLS servers
though perhaps useful for other (non-SSL/TLS) circumstances.
Also includes a self-contained network abstraction library (libnal), and the
sslswamp SSL/TLS benchmark/test utility.
PR: ports/79878
Submitted by: Marcel Prisi <marcel.prisi@virtua.ch>
Notes
Notes:
svn path=/head/; revision=133609
Diffstat (limited to 'security/distcache/files/patch-proto_fd.c')
-rw-r--r-- | security/distcache/files/patch-proto_fd.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/security/distcache/files/patch-proto_fd.c b/security/distcache/files/patch-proto_fd.c new file mode 100644 index 000000000000..a9bbf9a8bba2 --- /dev/null +++ b/security/distcache/files/patch-proto_fd.c @@ -0,0 +1,18 @@ +*** libnal/proto_fd.c.ori Wed Apr 13 19:34:07 2005 +--- libnal/proto_fd.c Wed Apr 13 21:51:20 2005 +*************** +*** 24,29 **** +--- 24,36 ---- + #include <libnal/nal.h> + #include "nal_internal.h" + #include <libsys/post.h> ++ #ifdef __FreeBSD__ ++ #if __FreeBSD_version >= 502010 ++ #include <sys/limits.h> ++ #else ++ #include <machine/limits.h> ++ #endif ++ #endif /* __FreeBSD__ */ + + /**************************/ + /* predeclare our vtables */ |