The branch, master has been updated
       via  1bf51ea26293120a63e445e07b08ddf718487900 (commit)
      from  c6b440d1b7f88af2897b9b2e9b09f05b488a1685 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 1bf51ea26293120a63e445e07b08ddf718487900
Author: Stefan Metzmacher <me...@samba.org>
Date:   Mon Feb 9 12:09:01 2009 +0100

    testprogs/win32: make it possible to run in byte or message mode in 
npecho_server2
    
    metze

-----------------------------------------------------------------------

Summary of changes:
 testprogs/win32/npecho/npecho_client2.c |    2 +-
 testprogs/win32/npecho/npecho_server2.c |   29 +++++++++++++++++++++++++----
 2 files changed, 26 insertions(+), 5 deletions(-)


Changeset truncated at 500 lines:

diff --git a/testprogs/win32/npecho/npecho_client2.c 
b/testprogs/win32/npecho/npecho_client2.c
index 0486cef..892574b 100755
--- a/testprogs/win32/npecho/npecho_client2.c
+++ b/testprogs/win32/npecho/npecho_client2.c
@@ -28,7 +28,7 @@ int main(int argc, char *argv[])
                return -1;
        }
 
-       Sleep(1000);
+       Sleep(5000);
 
        if (!ReadFile(h, outbuffer, sizeof(ECHODATA)*2, &numread, NULL)) {
                printf("Error reading: %d\n", GetLastError());
diff --git a/testprogs/win32/npecho/npecho_server2.c 
b/testprogs/win32/npecho/npecho_server2.c
index 72edb02..281fc45 100755
--- a/testprogs/win32/npecho/npecho_server2.c
+++ b/testprogs/win32/npecho/npecho_server2.c
@@ -15,16 +15,32 @@ int main(int argc, char *argv[])
        HANDLE h;
        DWORD numread = 0;
        char *outbuffer = malloc(sizeof(ECHODATA));
+       BOOL msgmode = FALSE;
+       DWORD type = 0;
 
        if (argc == 1) {
-               printf("Usage: %s pipename\n", argv[0]);
-               printf("  Where pipename is something like 
\\\\servername\\NPECHO\n");
-               return -1;
+               goto usage;
+       } else if (argc >= 3) {
+               if (strcmp(argv[2], "byte") == 0) {
+                       msgmode = FALSE;
+               } else if (strcmp(argv[2], "message") == 0) {
+                       msgmode = TRUE;
+               } else {
+                       goto usage;
+               }
+       }
+
+       if (msgmode == TRUE) {
+               printf("using message mode\n");
+               type = PIPE_TYPE_MESSAGE | PIPE_READMODE_MESSAGE | PIPE_WAIT;
+       } else {
+               printf("using byte mode\n");
+               type = PIPE_TYPE_BYTE | PIPE_READMODE_BYTE | PIPE_WAIT;
        }
 
        h = CreateNamedPipe(argv[1],
                            PIPE_ACCESS_DUPLEX,
-                           PIPE_TYPE_MESSAGE | PIPE_READMODE_MESSAGE | 
PIPE_WAIT,
+                           type,
                            PIPE_UNLIMITED_INSTANCES,
                            1024,
                            1024,
@@ -52,4 +68,9 @@ int main(int argc, char *argv[])
        CloseHandle(h);
 
        return 0;
+usage:
+       printf("Usage: %s pipename [mode]\n", argv[0]);
+       printf("  Where pipename is something like 
\\\\servername\\PIPE\\NPECHO\n");
+       printf("  Where mode is 'byte' or 'message'\n");
+       return -1;
 }


-- 
Samba Shared Repository

Reply via email to