summaryrefslogtreecommitdiffstats
path: root/buffer.h
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2005-11-09 07:30:14 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2005-11-09 07:30:14 +0000
commiteadf16a660310162bcc3cadda26f44acd3b83077 (patch)
tree7d384ed3923bb28c553d57bf9ca760f5aba51703 /buffer.h
parentd40f2b204b78ace5c2c9c3007887571ca5a2ec11 (diff)
downloadopenvpn-eadf16a660310162bcc3cadda26f44acd3b83077.tar.gz
openvpn-eadf16a660310162bcc3cadda26f44acd3b83077.tar.xz
openvpn-eadf16a660310162bcc3cadda26f44acd3b83077.zip
Removed annoying 'i' variable from add_option.
Allow plugin and push directives to have multiple parameters specified instead of only 1 quoted parameter. Allow plugin and push directives to have multi-line parameter lists, such as: <plugin> my-plugin.so parm1 parm2 </plugin> git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@785 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'buffer.h')
-rw-r--r--buffer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/buffer.h b/buffer.h
index 17bc37e..63a4763 100644
--- a/buffer.h
+++ b/buffer.h
@@ -84,6 +84,10 @@ void free_buf (struct buffer *buf);
bool buf_assign (struct buffer *dest, const struct buffer *src);
void string_clear (char *str);
+int string_array_len (const char **array);
+
+#define PA_BRACKET (1<<0)
+char *print_argv (const char **p, struct gc_arena *gc, const unsigned int flags);
/* for dmalloc debugging */
@@ -220,6 +224,7 @@ void buf_rmtail (struct buffer *buf, uint8_t remove);
* non-buffer string functions
*/
void chomp (char *str);
+const char *skip_leading_whitespace (const char *str);
void string_null_terminate (char *str, int len, int capacity);
/*