[4.0] 91d144e Consistent use of name, mention parameter.
Lasse Karstensen
lkarsten at varnish-software.com
Thu Jan 15 16:35:41 CET 2015
commit 91d144e32a41f73113b7b9ec72d5a44f6d8a1f37
Author: Lasse Karstensen <lkarsten at varnish-software.com>
Date: Fri Nov 7 14:30:08 2014 +0100
Consistent use of name, mention parameter.
diff --git a/doc/sphinx/users-guide/vcl-inline-c.rst b/doc/sphinx/users-guide/vcl-inline-c.rst
index 5cc0ead..e0d0998 100644
--- a/doc/sphinx/users-guide/vcl-inline-c.rst
+++ b/doc/sphinx/users-guide/vcl-inline-c.rst
@@ -1,16 +1,16 @@
-Using In-line C to extend Varnish
+Using inline C to extend Varnish
---------------------------------
(Here there be dragons. Big and mean ones.)
-You can use *in-line C* to extend Varnish. Please note that you can
+You can use *inline C* to extend Varnish. Please note that you can
seriously mess up Varnish this way. The C code runs within the Varnish
Cache process so if your code generates a segfault the cache will crash.
-One of the first uses of In-line C was logging to `syslog`.::
+One of the first uses of inline C was logging to `syslog`.::
# The include statements must be outside the subroutines.
C{
@@ -22,3 +22,7 @@ One of the first uses of In-line C was logging to `syslog`.::
syslog(LOG_INFO, "Something happened at VCL line XX.");
}C
}
+
+To use inline C you need to enable it with the ``vcc_allow_inline_c``
+parameter.
+
More information about the varnish-commit
mailing list