diff options
Diffstat (limited to 'src/hyper/parse.c')
-rw-r--r-- | src/hyper/parse.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/hyper/parse.c b/src/hyper/parse.c index aa270212..25201fe5 100644 --- a/src/hyper/parse.c +++ b/src/hyper/parse.c @@ -36,6 +36,7 @@ #define _PARSE_C #include "debug.h" +#include "halloc.h" #include "sockio.h" #include "parse.h" #include "parse-paste.h" @@ -72,6 +73,23 @@ HyperDocPage *cur_page; char *replace_page; /* true if dynamic page is link to static one */ + +void +reset_connection(void) +{ + if (spad_socket) { + FD_CLR(spad_socket->socket, &socket_mask); + purpose_table[spad_socket->purpose] = NULL; + close(spad_socket->socket); + spad_socket->socket = 0; + spad_socket = NULL; + if (input_string) + input_string[0] = '\0'; + spad_socket->nbytes_pending = 0; + connect_spad(); + } +} + /* * These routines are used for storing an restoring the parser mode. When * I start to parse from string, or from a macro, I need to restore the |