|
@@ -733,6 +733,19 @@ size_t qemu_get_counted_string(QEMUFile *f, char buf[256])
|
|
|
return res == len ? res : 0;
|
|
|
}
|
|
|
|
|
|
+/*
|
|
|
+ * Put a string with one preceding byte containing its length. The length of
|
|
|
+ * the string should be less than 256.
|
|
|
+ */
|
|
|
+void qemu_put_counted_string(QEMUFile *f, const char *str)
|
|
|
+{
|
|
|
+ size_t len = strlen(str);
|
|
|
+
|
|
|
+ assert(len < 256);
|
|
|
+ qemu_put_byte(f, len);
|
|
|
+ qemu_put_buffer(f, (const uint8_t *)str, len);
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
* Set the blocking state of the QEMUFile.
|
|
|
* Note: On some transports the OS only keeps a single blocking state for
|