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

📄 options.h

📁 从国外网站上下载的关于 逆向工程和协议分析练习 的一个分析文档 对你的加密与解密很有帮助
💻 H
字号:
/*
 *	全局数据定义
 */

#ifndef __SOCK_OPTIONS_H__
#define __SOCK_OPTIONS_H__

struct options
{
	const char *my_ip;
	const char *server_ip;
	const char *username;
	const char *password;
	const char *services;
	const char *version;
	char *session;
	int sesslen;
	unsigned short my_port;
	unsigned short server_port;
	unsigned char my_mac[6];
	int recv_timeout;
	int console;
	int login_wait;
	int ping_wait;
};

extern struct options g_options;

extern int options_init(void);
extern int options_exit(void);

#endif

⌨️ 快捷键说明

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