/* * Copyright (C) 2005 Alfresco, Inc. * * Licensed under the Mozilla Public License version 1.1 * with a permitted attribution clause. You may obtain a * copy of the License at * * http://www.alfresco.org/legal/license.txt * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific * language governing permissions and limitations under the * License. */ package org.alfresco.filesys.smb.server; /** *

* Contains the named pipe transaction codes. */ public class NamedPipeTransaction { // Transaction sub-commands public static final int CallNamedPipe = 0x54; public static final int WaitNamedPipe = 0x53; public static final int PeekNmPipe = 0x23; public static final int QNmPHandState = 0x21; public static final int SetNmPHandState = 0x01; public static final int QNmPipeInfo = 0x22; public static final int TransactNmPipe = 0x26; public static final int RawReadNmPipe = 0x11; public static final int RawWriteNmPipe = 0x31; /** * Return the named pipe transaction sub-command as a string * * @param subCmd int * @return String */ public final static String getSubCommand(int subCmd) { // Determine the sub-command code String ret = ""; switch (subCmd) { case CallNamedPipe: ret = "CallNamedPipe"; break; case WaitNamedPipe: ret = "WaitNamedPipe"; break; case PeekNmPipe: ret = "PeekNmPipe"; break; case QNmPHandState: ret = "QNmPHandState"; break; case SetNmPHandState: ret = "SetNmPHandState"; break; case QNmPipeInfo: ret = "QNmPipeInfo"; break; case TransactNmPipe: ret = "TransactNmPipe"; break; case RawReadNmPipe: ret = "RawReadNmPipe"; break; case RawWriteNmPipe: ret = "RawWriteNmPipe"; break; } return ret; } }