aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-svcctl.h
diff options
context:
space:
mode:
authortpot <tpot@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-26 00:19:24 +0000
committertpot <tpot@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-26 00:19:24 +0000
commit430701bfd288cb78160242b738d3cb231f32d960 (patch)
treefdb006a9a615661dcd89e8cf99e1ae555d513376 /packet-dcerpc-svcctl.h
parentdf2f4779801300bd631b628afc11a668f799ac45 (diff)
New DCERPC pipe for Windows service control. Implemented only stubs so far.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7567 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc-svcctl.h')
-rw-r--r--packet-dcerpc-svcctl.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/packet-dcerpc-svcctl.h b/packet-dcerpc-svcctl.h
new file mode 100644
index 0000000000..f67d132f6b
--- /dev/null
+++ b/packet-dcerpc-svcctl.h
@@ -0,0 +1,44 @@
+/* packet-dcerpc-svcctl.h
+ * Routines for SMB \PIPE\svcctl packet disassembly
+ * Copyright 2003, Tim Potter <tpot@samba.org>
+ *
+ * $Id: packet-dcerpc-svcctl.h,v 1.1 2003/04/26 00:19:23 tpot Exp $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __PACKET_DCERPC_SVCCTL_H
+#define __PACKET_DCERPC_SVCCTL_H
+
+#define SVC_CLOSE 0x00
+#define SVC_STOP_SERVICE 0x01
+#define SVC_DELETE 0x02
+#define SVC_UNKNOWN_3 0x03
+#define SVC_GET_SVC_SEC 0x04
+#define SVC_CHANGE_SVC_CONFIG 0x0b
+#define SVC_ENUM_SVCS_STATUS 0x0e
+#define SVC_OPEN_SC_MAN 0x0f
+#define SVC_OPEN_SERVICE 0x10
+#define SVC_QUERY_SVC_CONFIG 0x11
+#define SVC_START_SERVICE 0x13
+#define SVC_QUERY_DISP_NAME 0x14
+#define SVC_OPEN_SC_MAN_A 0x1b
+#define SVC_OPEN_SERVICE_A 0x1c
+
+#endif