Displaying 2 results from an estimated 2 matches for "escape_charact".
Did you mean:
escape_character
2006 Mar 29
0
[fdo] LDTP 0.4.0 released !!!
...r
argument NULL to avoid crash.
* ldtp-logger.c (ldtp_log): vprintf also will be printed iff
LDTP_DEBUG option is enabled.
* ldtp-request.c (ldtp_request_fill_request): When XML packet
is
NULL don't process further, which avoids a crash.
* ldtp-utils.c (escape_character): Modified function name
escape_under_score to escape_character and also added one
parameter to make this function a generic one. Check if
argument
is not NULL then continue else return immediately.
* remap.c (get_keybinding, filter_appmap_data,
get_object_info,...
2006 Sep 06
7
[RFC PATCH] allow connecting to xenconsole from remote hosts
...modify
* it under the terms of the GNU General Public License as published by
@@ -35,32 +36,57 @@
#include <err.h>
#include <errno.h>
#include <pty.h>
+#include <netinet/in.h>
+#include <netdb.h>
+#include <stdarg.h>
#include "xs.h"
#define ESCAPE_CHARACTER 0x1d
+#define DEFAULT_LISTEN_PORT 7890
+#define MSG_SIZE 512
+
+struct remote {
+ long port;
+ int do_listen;
+ int gateway;
+ int noecho;
+ int server; /* server socket */
+};
+
+struct message {
+ struct message *next;
+ char* data;
+ size_t len;
+};
+
+struct queue {
+ struct message *head;
+...