summaryrefslogtreecommitdiff
path: root/testprogs/win32/npecho/npecho_client2.c
blob: 892574beb0534112707e561fcd16703db8049763 (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
/*
 * Simple Named Pipe Client
 * (C) 2005 Jelmer Vernooij <jelmer@samba.org>
 * (C) 2009 Stefan Metzmacher <metze@samba.org>
 * Published to the public domain
 */

#include <windows.h>
#include <stdio.h>

#define ECHODATA "Black Dog"

int main(int argc, char *argv[])
{
	HANDLE h;
	DWORD numread = 0;
	char *outbuffer = malloc(sizeof(ECHODATA)*2);

	if (argc == 1) {
		printf("Usage: %s pipename\n", argv[0]);
		printf("  Where pipename is something like \\\\servername\\NPECHO\n");
		return -1;
	}

	h = CreateFile(argv[1], GENERIC_READ|GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
	if (h == INVALID_HANDLE_VALUE) {
		printf("Error opening: %d\n", GetLastError());
		return -1;
	}

	Sleep(5000);

	if (!ReadFile(h, outbuffer, sizeof(ECHODATA)*2, &numread, NULL)) {
		printf("Error reading: %d\n", GetLastError());
		return -1;
	}

	printf("Read: %s %d\n", outbuffer, numread);

	if (!ReadFile(h, outbuffer, sizeof(ECHODATA)*2, &numread, NULL)) {
		printf("Error reading: %d\n", GetLastError());
		return -1;
	}

	printf("Read: %s %d\n", outbuffer, numread);

	return 0;
}