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

📄 printqos.h

📁 这个是网络编程
💻 H
字号:
//
// Sample: Function definitions for QOS print routines
// 
// Files:
//      printqos.h      - this file
//      
// Description:
//      This file contains function prototypes for support routines
//      that print various QOS structure. These functions are 
//      implemented in printqos.cpp
//
#ifndef _PRINTQOS_H_
#define _PRINTQOS_H_

#define SERVICETYPE_STR_LEN        256

// QOS and FLOWSPEC print functions
void  PrintQos(QOS *pqos);
void  PrintFlowspec(FLOWSPEC *pflow, int indent);
void  PrintProviderSpecific(WSABUF *provider, int indent);
char *GetServiceTypeStr(SERVICETYPE type);

// Provider specific object functions
void PrintRsvpStatus     (RSVP_STATUS_INFO *status, int indent);
void PrintRsvpResv       (RSVP_RESERVE_INFO *reserve, int indent);
void PrintRsvpAdspec     (RSVP_ADSPEC *adspec, int indent);
void PrintRsvpPolicy     (RSVP_POLICY_INFO *policy, int indent);

void PrintQosSDMode      (QOS_SD_MODE *sd, int indent);
void PrintQosDestAddr    (QOS_DESTADDR *dest, int indent);

void PrintAdGeneralParams(AD_GENERAL_PARAMS *params, int indent);


#endif

⌨️ 快捷键说明

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