⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ubikops.h

📁 This directory contains source code for tcpdump, a tool for network monitoring and data acquisition
💻 H
字号:
/*
 * Copyright (C) 1992 Transarc Corporation - All rights reserved
 *
 */

/* Ubik Ops
 */
#define VOTE_BEACON             10000
#define VOTE_DEBUG              10001
#define VOTE_SDEBUG             10002
#define VOTE_GETSYNCSITE        10003

#define UVOTE_LowestOpcode      10000
#define UVOTE_HighestOpcode     10003

#define DISK_BEGIN              20000
#define DISK_COMMIT             20001
#define DISK_LOCK               20002
#define DISK_WRITE              20003
#define DISK_GETVERSION         20004
#define DISK_GETFILE            20005
#define DISK_SENDFILE           20006
#define DISK_ABORT              20007
#define DISK_RELEASELOCKS       20008
#define DISK_TRUNCATE           20009
#define DISK_PROBE              20010

#define UDISK_LowestOpcode      20000
#define UDISK_HighestOpcode     20010

static char *UVOTE_opstrings[4] = {
            "Beacon     ",
            "Debug      ",
            "SDebug     ",
            "GetSyncSite"
          };

static char *UDISK_opstrings[11] = {
            "Begin       ",
            "Commit      ",
            "Lock        ",
            "Write       ",
            "GetVersion  ",
            "GetFile     ",
            "SendFile    ",
            "Abort       ",
            "ReleaseLocks",
            "Truncate    ",
            "Probe       "
          };

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -