diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-12-01 22:34:24 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-12-01 22:34:24 +0100 |
commit | 07e964d147b5628c09673c75a5a31862d4405f4a (patch) | |
tree | 69e2e0ffd9e31250eac958cfdb3ea01898e2811a /doc/cha-internals.texi | |
parent | abdea773135cde901a5102db32480fc4d0057171 (diff) | |
download | gnutls-07e964d147b5628c09673c75a5a31862d4405f4a.tar.gz |
escaped chars.
Diffstat (limited to 'doc/cha-internals.texi')
-rw-r--r-- | doc/cha-internals.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/cha-internals.texi b/doc/cha-internals.texi index c462b7c86a..0cf96c3c58 100644 --- a/doc/cha-internals.texi +++ b/doc/cha-internals.texi @@ -156,7 +156,7 @@ Most likely you'll need to add an @code{#include "ext_foobar.h"}, that will contain something like like: @example - extension_entry_st foobar_ext = { + extension_entry_st foobar_ext = @{ .name = "FOOBAR", .type = GNUTLS_EXTENSION_FOOBAR, .parse_type = GNUTLS_EXT_TLS, @@ -165,7 +165,7 @@ like: .pack_func = _foobar_pack, .unpack_func = _foobar_unpack, .deinit_func = NULL - } + @} @end example The GNUTLS_EXTENSION_FOOBAR is the integer value you added to |