亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? options.h

?? OpenVPN is a robust and highly flexible tunneling application that uses all of the encryption, authe
?? H
字號:
/* *  OpenVPN -- An application to securely tunnel IP networks *             over a single UDP port, with support for SSL/TLS-based *             session authentication and key exchange, *             packet encryption, packet authentication, and *             packet compression. * *  Copyright (C) 2002-2004 James Yonan <jim@yonan.net> * *  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 (see the file COPYING included with this *  distribution); if not, write to the Free Software Foundation, Inc., *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA *//* * 2004-01-28: Added Socks5 proxy support *   (Christof Meerwald, http://cmeerw.org) */#ifndef OPTIONS_H#define OPTIONS_H#include "basic.h"#include "mtu.h"#include "route.h"#include "tun.h"#include "socket.h"/* * Maximum number of parameters associated with an option, * including the option name itself. */#define MAX_PARMS 5extern const char title_string[];#if P2MP/* parameters to be pushed to peer */#define MAX_PUSH_LIST_LEN 1024 /* This parm is related to PLAINTEXT_BUFFER_SIZE in ssl.h */struct push_list {  /* newline delimited options, like config file */  char options[MAX_PUSH_LIST_LEN];};/* certain options are saved before --pull modifications are applied */struct options_pre_pull{  bool tuntap_options_defined;  struct tuntap_options tuntap_options;  bool routes_defined;  struct route_option_list routes;  int foreign_option_index;};#endif/* Command line options */struct options{  struct gc_arena gc;  /* first config file */  const char *config;  /* major mode */# define MODE_POINT_TO_POINT 0# define MODE_SERVER         1  int mode;  /* persist parms */  bool persist_config;  int persist_mode;#ifdef USE_CRYPTO  bool askpass;  bool show_ciphers;  bool show_digests;#ifdef USE_SSL  bool show_tls_ciphers;#endif  bool genkey;#endif  /* Networking parms */  const char *local;  int local_port;  int remote_port;  bool remote_float;  struct remote_list *remote_list;  bool remote_random;  const char *ipchange;  bool bind_local;  const char *dev;  const char *dev_type;  const char *dev_node;  const char *ifconfig_local;  const char *ifconfig_remote_netmask;  bool ifconfig_noexec;  bool ifconfig_nowarn;#ifdef HAVE_GETTIMEOFDAY  int shaper;#endif  int tun_mtu;           /* MTU of tun device */  int tun_mtu_extra;  bool tun_mtu_extra_defined;  int link_mtu;          /* MTU of device over which tunnel packets pass via TCP/UDP */  bool tun_mtu_defined;  /* true if user overriding parm with command line option */  bool link_mtu_defined; /* true if user overriding parm with command line option */  /* Protocol type (PROTO_UDP or PROTO_TCP) */  int proto;  int connect_retry_seconds;  bool connect_retry_defined;  /* Advanced MTU negotiation and datagram fragmentation options */  int mtu_discover_type; /* used if OS supports setting Path MTU discovery options on socket */  bool mtu_test;  int fragment;          /* internal fragmentation size */  bool mlock;  int inactivity_timeout;  int ping_send_timeout;        /* Send a TCP/UDP ping to remote every n seconds */  int ping_rec_timeout;         /* Expect a TCP/UDP ping from remote at least once every n seconds */  bool ping_timer_remote;       /* Run ping timer only if we have a remote address */  bool tun_ipv6;                /* Build tun dev that supports IPv6 */# define PING_UNDEF   0# define PING_EXIT    1# define PING_RESTART 2  int ping_rec_timeout_action;  /* What action to take on ping_rec_timeout (exit or restart)? */  bool persist_tun;             /* Don't close/reopen TUN/TAP dev on SIGUSR1 or PING_RESTART */  bool persist_local_ip;        /* Don't re-resolve local address on SIGUSR1 or PING_RESTART */  bool persist_remote_ip;       /* Don't re-resolve remote address on SIGUSR1 or PING_RESTART */  bool persist_key;             /* Don't re-read key files on SIGUSR1 or PING_RESTART */  int mssfix;                   /* Upper bound on TCP MSS */#if PASSTOS_CAPABILITY  bool passtos;                  #endif  int resolve_retry_seconds;    /* If hostname resolve fails, retry for n seconds */  struct tuntap_options tuntap_options;  /* Misc parms */  const char *username;  const char *groupname;  const char *chroot_dir;  const char *cd_dir;  const char *writepid;  const char *up_script;  const char *down_script;  bool up_delay;  bool up_restart;  bool daemon;  /* inetd modes defined in socket.h */  int inetd;  bool log;  int nice;  int verbosity;  int mute;  bool gremlin;  const char *status_file;  int status_file_update_freq;#ifdef USE_LZO  bool comp_lzo;  bool comp_lzo_adaptive;#endif  /* buffer sizes */  int rcvbuf;  int sndbuf;  /* route management */  const char *route_script;  const char *route_default_gateway;  bool route_noexec;  int route_delay;  bool route_delay_defined;  struct route_option_list *routes;  /* http proxy */  const char *http_proxy_server;  int http_proxy_port;  const char *http_proxy_auth_method;  const char *http_proxy_auth_file;  bool http_proxy_retry;  /* socks proxy */  const char *socks_proxy_server;  int socks_proxy_port;  bool socks_proxy_retry;  /* Enable options consistency check between peers */  bool occ;#ifdef USE_PTHREAD  int n_threads;  int nice_work;#endif#if P2MP  struct push_list *push_list;  bool pull; /* client pull of config options from server */  struct options_pre_pull *pre_pull;  bool ifconfig_pool_defined;  in_addr_t ifconfig_pool_start;  in_addr_t ifconfig_pool_end;  int real_hash_size;  int virtual_hash_size;  const char *client_connect_script;  const char *client_disconnect_script;  const char *learn_address_script;  const char *tmp_dir;  const char *client_config_dir;  int n_bcast_buf;  struct iroute *iroutes;  bool push_ifconfig_defined;  in_addr_t push_ifconfig_local;  in_addr_t push_ifconfig_remote_netmask;  bool enable_c2c;  bool duplicate_cn;  int cf_max;  int cf_per;#endif#ifdef USE_CRYPTO  /* Cipher parms */  const char *shared_secret_file;  int key_direction;  bool ciphername_defined;  const char *ciphername;  bool authname_defined;  const char *authname;  int keysize;  bool engine;  bool replay;  int replay_window;  int replay_time;  const char *packet_id_file;  bool use_iv;  bool test_crypto;#ifdef USE_SSL  /* TLS (control channel) parms */  bool tls_server;  bool tls_client;  const char *ca_file;  const char *dh_file;  const char *cert_file;  const char *priv_key_file;  const char *cipher_list;  const char *tls_verify;  const char *tls_remote;  const char *crl_file;  /* data channel key exchange method */  int key_method;  /* Per-packet timeout on control channel */  int tls_timeout;  /* Data channel key renegotiation parameters */  int renegotiate_bytes;  int renegotiate_packets;  int renegotiate_seconds;  /* Data channel key handshake must finalize     within n seconds of handshake initiation. */  int handshake_window;  /* Old key allowed to live n seconds after new key goes active */  int transition_window;  /* Special authentication MAC for TLS control channel */  const char *tls_auth_file;		/* shared secret */  /* Allow only one session */  bool single_session;#endif /* USE_SSL */#endif /* USE_CRYPTO */  /* special state parms */  int foreign_option_index;#ifdef WIN32  const char *exit_event_name;  bool exit_event_initial_state;#endif};#define streq(x, y) (!strcmp((x), (y)))/* * Option classes. */#define OPT_P_GENERAL   (1<<0)#define OPT_P_UP        (1<<1)#define OPT_P_ROUTE     (1<<2)#define OPT_P_IPWIN32   (1<<3)#define OPT_P_SCRIPT    (1<<4)#define OPT_P_SETENV    (1<<5)#define OPT_P_SHAPER    (1<<6)#define OPT_P_TIMER     (1<<7)#define OPT_P_PERSIST   (1<<8)#define OPT_P_COMP      (1<<9)  /* TODO */#define OPT_P_MESSAGES  (1<<10)#define OPT_P_CRYPTO    (1<<11) /* TODO */#define OPT_P_TLS_PARMS (1<<12) /* TODO */#define OPT_P_MTU       (1<<13) /* TODO */#define OPT_P_NICE      (1<<14)#define OPT_P_PUSH      (1<<15)#define OPT_P_INSTANCE  (1<<16)#define OPT_P_CONFIG    (1<<17)#define OPT_P_DEFAULT   (~OPT_P_INSTANCE)#if P2MP#define PULL_DEFINED(opt) ((opt)->pull)#define PUSH_DEFINED(opt) ((opt)->push_list)#else#define PULL_DEFINED(opt) (false)#define PUSH_DEFINED(opt) (false)#endif#ifdef HAVE_GETTIMEOFDAY#define SHAPER_DEFINED(opt) ((opt)->shaper)#else#define SHAPER_DEFINED(opt) (false)#endifvoid parse_argv (struct options* options,		 int argc,		 char *argv[],		 int msglevel,		 unsigned int permission_mask,		 unsigned int *option_types_found);void notnull (const char *arg, const char *description);void usage_small (void);void init_options (struct options *o);void uninit_options (struct options *o);void setenv_settings (const struct options *o);void show_settings (const struct options *o);bool string_defined_equal (const char *s1, const char *s2);const char *options_string_version (const char* s, struct gc_arena *gc);char *options_string (const struct options *o,		      const struct frame *frame,		      struct tuntap *tt,		      bool remote,		      struct gc_arena *gc);int options_cmp_equal (char *actual, const char *expected, size_t actual_n);void options_warning (char *actual, const char *expected, size_t actual_n);void options_postprocess (struct options *options, bool first_time);void pre_pull_save (struct options *o);void pre_pull_restore (struct options *o);bool apply_push_options (struct options *options,			 struct buffer *buf,			 unsigned int permission_mask,			 unsigned int *option_types_found);bool is_persist_option (const struct options *o);void options_detach (struct options *o);void options_server_import (struct options *o,			    const char *filename,			    int msglevel,			    unsigned int permission_mask,			    unsigned int *option_types_found);void pre_pull_default (struct options *o);#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精选视频免费看| 亚洲成a人片综合在线| 精品视频一区二区三区免费| 久久91精品国产91久久小草| 亚洲激情成人在线| 久久精品日韩一区二区三区| 欧美日韩免费电影| 2020国产精品久久精品美国| 久久免费的精品国产v∧| 色婷婷综合视频在线观看| 国产精品一区免费在线观看| 亚洲国产sm捆绑调教视频| 国产精品午夜电影| 欧美成人精品3d动漫h| 欧美精选午夜久久久乱码6080| 波多野结衣中文字幕一区| 精品在线一区二区三区| 视频一区中文字幕国产| 亚洲美女视频一区| 国产精品久久影院| 欧美国产一区二区在线观看| 精品国精品国产尤物美女| 欧美日本乱大交xxxxx| 91福利国产成人精品照片| 99视频热这里只有精品免费| 国产成人免费视频网站 | 日韩精品1区2区3区| 亚洲人午夜精品天堂一二香蕉| 久久久精品tv| 久久这里只有精品6| 日韩欧美一卡二卡| 日韩一区二区在线观看视频播放| 欧美三级电影一区| 欧美亚洲综合一区| 欧美日韩在线三级| 欧美日韩精品一区视频| 欧美日韩aaa| 69久久99精品久久久久婷婷| 欧美精品123区| 337p亚洲精品色噜噜噜| 91精品国产欧美一区二区18| 91精品国产综合久久久久久漫画| 欧美酷刑日本凌虐凌虐| 欧美猛男男办公室激情| 亚洲视频精选在线| 综合电影一区二区三区| 国产精品美女久久久久久久网站| 国产精品国产馆在线真实露脸| 国产精品乱码一区二三区小蝌蚪| 国产精品丝袜一区| 亚洲人成人一区二区在线观看| 亚洲欧美综合色| 亚洲免费成人av| 午夜精品久久久| 免费成人av在线| 国产精品亚洲一区二区三区妖精 | 色88888久久久久久影院按摩| 一本色道久久综合精品竹菊| 欧美视频在线一区| 欧美一区二区播放| 2021国产精品久久精品| 中文字幕第一区第二区| 亚洲裸体xxx| 奇米亚洲午夜久久精品| 国产在线精品免费| 99免费精品在线| 欧美精品粉嫩高潮一区二区| 2014亚洲片线观看视频免费| 国产精品天美传媒| 亚洲高清在线视频| 韩国三级电影一区二区| 色综合视频一区二区三区高清| 欧美三级电影网| 久久久久久久久久电影| 亚洲欧美日韩中文字幕一区二区三区 | 97久久精品人人做人人爽| 国产精品久久午夜夜伦鲁鲁| 成人欧美一区二区三区在线播放| 亚洲妇女屁股眼交7| 国产精品一区二区三区四区| av电影天堂一区二区在线观看| 91超碰这里只有精品国产| 国产午夜精品久久久久久久| 亚洲国产裸拍裸体视频在线观看乱了 | 国产一区二区三区久久悠悠色av| 99re热视频精品| 日韩一区二区在线播放| 亚洲欧洲三级电影| 久久超级碰视频| 色综合久久99| 久久久久国产精品麻豆ai换脸| 一区二区三区电影在线播| 国产在线精品一区二区三区不卡| 色婷婷精品久久二区二区蜜臂av| 精品国产麻豆免费人成网站| 亚洲精品免费在线观看| 国产成人综合精品三级| 91精品国产入口在线| 日韩理论电影院| 国产精品一区在线观看你懂的| 欧美午夜精品久久久| 日本一区二区三级电影在线观看| 日韩精品久久理论片| 色偷偷久久一区二区三区| 久久久不卡网国产精品二区| 日本强好片久久久久久aaa| 91麻豆精东视频| 中文字幕精品三区| 国产综合色精品一区二区三区| 欧美人妇做爰xxxⅹ性高电影| 日韩一区欧美小说| 粉嫩av一区二区三区| 欧美mv日韩mv| 青青青爽久久午夜综合久久午夜| 欧美在线免费视屏| 亚洲精品中文在线| 91亚洲永久精品| 国产精品乱人伦| 国产成人免费高清| 久久久久久久久久久久久久久99| 免费在线观看精品| 欧美一区欧美二区| 日韩精品久久理论片| 欧美亚洲国产一区二区三区| 亚洲男人的天堂一区二区| 99久久伊人网影院| 国产精品福利一区二区| 成人污视频在线观看| 国产视频911| 国产精品 日产精品 欧美精品| 精品国产精品网麻豆系列| 男男视频亚洲欧美| 欧美videofree性高清杂交| 免费三级欧美电影| 欧美videos大乳护士334| 久久99精品久久久久久动态图| 日韩免费看网站| 韩国v欧美v亚洲v日本v| 久久尤物电影视频在线观看| 国产一区二区主播在线| 国产亚洲欧美色| 成人在线综合网| 亚洲欧美精品午睡沙发| 在线观看亚洲精品| 偷拍一区二区三区四区| 亚洲人成网站在线| 91国产视频在线观看| 性久久久久久久| 日韩午夜在线影院| 国产精品一线二线三线精华| 国产蜜臀av在线一区二区三区| 99综合影院在线| 亚洲一区二区在线免费看| 欧美精品三级日韩久久| 麻豆91精品视频| 欧美国产国产综合| 日本高清无吗v一区| 日韩激情av在线| 久久麻豆一区二区| 91视频精品在这里| 丝袜美腿一区二区三区| 26uuu另类欧美| 91女人视频在线观看| 日韩制服丝袜av| 久久影音资源网| 91啦中文在线观看| 日韩电影免费一区| 日本一区二区三区免费乱视频| 一本久道久久综合中文字幕| 日日夜夜免费精品视频| 久久久久久久电影| 欧美在线不卡一区| 国产综合久久久久久久久久久久| 国产精品久久久久一区| 欧美精品三级日韩久久| 粉嫩13p一区二区三区| 午夜精品视频在线观看| 久久久久国产精品厨房| 在线精品观看国产| 国产成人亚洲精品狼色在线 | 国精产品一区一区三区mba视频| 国产精品理论片在线观看| 6080yy午夜一二三区久久| 国产91精品免费| 日本va欧美va瓶| 亚洲人成亚洲人成在线观看图片 | 亚洲男人的天堂在线aⅴ视频| 欧美一区二区在线免费播放| 成人禁用看黄a在线| 男男视频亚洲欧美| 伊人开心综合网| 久久久亚洲午夜电影| 欧美日韩视频专区在线播放| 国产91在线看| 日韩精品免费专区| 亚洲精品日韩专区silk| 国产日产欧美一区| 欧美一二三在线| 欧美视频在线观看一区二区| 成人免费视频一区|