blob: b273b182004b89a8b067736bf4edc6731734354e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#include <u.h>
#include <libc.h>
#include <venti.h>
int
vtputstring(Packet *p, char *s)
{
uchar buf[2];
int n;
if(s == nil){
werrstr("null string in packet");
return -1;
}
n = strlen(s);
if(n > VtMaxStringSize){
werrstr("string too long in packet");
return -1;
}
buf[0] = n>>8;
buf[1] = n;
packetappend(p, buf, 2);
packetappend(p, (uchar*)s, n);
return 0;
}
int
vtgetstring(Packet *p, char **ps)
{
uchar buf[2];
int n;
char *s;
if(packetconsume(p, buf, 2) < 0)
return -1;
n = (buf[0]<<8) + buf[1];
if(n > VtMaxStringSize) {
werrstr("string too long in packet");
return -1;
}
s = vtmalloc(n+1);
if(packetconsume(p, (uchar*)s, n) < 0){
vtfree(s);
return -1;
}
s[n] = 0;
*ps = s;
return 0;
}
|