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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? wwwsys.h

?? www工具包. 這是W3C官方支持的www支撐庫(kù). 其中提供通用目的的客戶(hù)端的WebAPI: complete HTTP/1.1 (with caching, pipelining, PUT, POS
?? H
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
less than 10. It works.*/#ifdef VMS#include "HTVMSUtils.h"#define CACHE_FILE_PREFIX	"SYS$LOGIN:Z_"#define DEFAULT_SUFFIXES	"._"#define HAVE_CUSERID#ifdef WIN_TCP#define NETREAD(s,b,l)	((s)>10 ? netread((s),(b),(l)) : read((s),(b),(l)))#define NETWRITE(s,b,l)	((s)>10 ? netwrite((s),(b),(l)) : write((s),(b),(l)))#define NETCLOSE(s) 	((s)>10 ? netclose(s) : close(s))#endif /* WIN_TCP */#ifdef MULTINET#undef NETCLOSE#undef NETREAD#undef NETWRITE#define NETREAD(s,b,l)	((s)>10 ? socket_read((s),(b),(l)) : read((s),(b),(l)))#define NETWRITE(s,b,l)	((s)>10 ? socket_write((s),(b),(l)) : \				write((s),(b),(l)))#define NETCLOSE(s) 	((s)>10 ? socket_close(s) : close(s))#define IOCTL(s,c,a)	socket_ioctl(s,c,a);#endif /* MULTINET */#ifdef DECNET#define DNP_OBJ 80	/* This one doesn't look busy, but we must check */			/* That one was for decnet */#undef SELECT		/* not supported */#define NETREAD(s,b,l)	((s)>10 ? recv((s),(b),(l),0) : read((s),(b),(l)))#define NETWRITE(s,b,l)	((s)>10 ? send((s),(b),(l),0) : write((s),(b),(l)))#define NETCLOSE(s) 	((s)>10 ? socket_close(s) : close(s))#undef HAVE_GETHOSTNAME			/* Decnet doesn't have a name server */#endif /* Decnet */#undef HAVE_GETDOMAINNAME         /*	Certainly this works for UCX and Multinet; not tried for Wollongong*/#ifdef MULTINET#include <time.h>#ifdef __TIME_T#define __TYPES#define __TYPES_LOADED#endif /* __TIME_T */#include <multinet_root:[multinet.include.sys]types.h>#include <multinet_root:[multinet.include]errno.h>#ifdef __TYPES#define __TIME_T#endif /* __TYPE */#ifdef __TIME_LOADED#define __TIME#endif /* __TIME_LOADED */#include <multinet_root:[multinet.include.sys]time.h>#else /* not MULTINET */#include <types.h>#include <errno.h>#include <time.h>#endif /* not MULTINET */#include string#ifndef STDIO_H#include <stdio>#define STDIO_H#endif#include file#ifndef DECNET  /* Why is it used at all ? Types conflict with "types.h> */#include unixio#endif#define INCLUDES_DONE#ifdef MULTINET  /* Include from standard Multinet directories */#include <multinet_root:[multinet.include.sys]socket.h>#ifdef __TIME_LOADED  /* defined by sys$library:time.h */#define __TIME  /* to avoid double definitions in next file */#endif#include <multinet_root:[multinet.include.netinet]in.h>#include <multinet_root:[multinet.include.arpa]inet.h>#include <multinet_root:[multinet.include]netdb.h>#include <multinet_root:[multinet.include.sys]ioctl.h>#else  /* not multinet */#ifdef DECNET#include <types.h>  /* for socket.h */#include <socket.h>#include <dn>#include <dnetdb>#else /* UCX or WIN */#ifdef CADDR_T#define __CADDR_T#endif /* problem with xlib.h inclusion */#include <socket.h>#include <in.h>#include <inet.h>#include <netdb.h>#include <ucx$inetdef.h>#endif  /* not DECNET */#endif  /* of Multinet or other TCP includes */#define TCP_INCLUDES_DONE#ifdef UCX#define SIMPLE_TELNET#endif/*On VMS directory browsing is available through a separate copy of dirent.c.The definition of R_OK seem to be missing from the system include files...*/#define USE_DIRENT#define GOT_READ_DIR#include <dirent.h>#define DIR struct dirent#define R_OK 4/*On VMS machines, the linker needs to be told to put global data sectionsinto a data segment using these storage classes. (MarkDonszelmann)*/#ifdef VAXC#define GLOBALDEF globaldef#define GLOBALREF globalref#endif /*  VAXC */#endif	/* vms *//*On non-VMS machines, the GLOBALDEF and GLOBALREF storage types default tonormal C storage types.*/#ifndef GLOBALREF#define GLOBALDEF#define GLOBALREF extern#endif/*On non-VMS machines STAT should be stat, unless that was overriddensomewhere above. On VMS machines STAT is a function that convertsdirectories and devices so that you can stat them.*/#ifdef VMStypedef unsigned long mode_t;#define HT_STAT		HTStat#define HT_LSTAT	HTStat#else#ifndef HT_STAT#define HT_STAT		stat#endif#ifndef HT_LSTAT#define HT_LSTAT	lstat#endif#endif /* non VMS *//*(  Dynamic Memory)Replace memory allocation and free C RTL functions with VAXC$xxx_OPT alternativesfor VAXC (but not DECC) on VMS. This makes a big performance difference.(Foteos Macrides). Also have a look at the DynamicMemory Module for how to handle malloc andcalloc.*/#ifdef VMS#include <stdio.h>#include <stdlib.h>#include <unixlib.h>#include <ctype.h>#if defined(VAXC) && !defined(__DECC)#define malloc	VAXC$MALLOC_OPT#define calloc	VAXC$CALLOC_OPT#define free	VAXC$FREE_OPT#define cfree	VAXC$CFREE_OPT#define realloc	VAXC$REALLOC_OPT#endif /* VAXC but not DECC */#define unlink remove#define gmtime localtime#include <stat.h>#define S_ISDIR(m)      (((m)&S_IFMT) == S_IFDIR)#define S_ISREG(m)      (((m)&S_IFMT) == S_IFREG)#define putenv HTVMS_putenv#endif /* VMS *//*(  Strftime and other time stuff)*/#ifdef VMS#ifndef DECC#undef  HAVE_STRFTIME#endif#undef  HAVE_MKTIME#undef  HAVE_TIMEGM#define NO_GMTOFF#undef  HAVE_TIMEZONE#endif/*(  Definition of Errno)*/#ifdef VMS#ifndef __DECCextern int uerrno;	/* Deposit of error info (as per errno.h) */extern volatile noshare int socket_errno; /* socket VMS error info                                           (used for translation of vmserrno) */extern volatile noshare int vmserrno;	/* Deposit of VMS error info */extern volatile noshare int errno;  /* noshare to avoid PSECT conflict */#define ERRNO_DONE#endif /* not DECC */#endif /* VMS *//*  !  Platform Independent Stuff!Here we use all the knowledge we got above....  Include Files.This file includes all system header files that are needed, iff they exist.Their existance is discovered by configure.*//* stdio.h */#ifdef HAVE_STDIO_H#include <stdio.h>#endif/* types.h */#ifdef HAVE_SYS_TYPES_H#include <sys/types.h>#else#ifdef HAVE_TYPES_H#include <types.h>#endif#endif/* unistd.h */#ifdef HAVE_UNISTD_H#include <unistd.h>#else#ifdef HAVE_SYS_UNISTD_H#include <sys/unistd.h>#endif#endif/* fcntl.h */#ifdef HAVE_FCNTL_H#include <fcntl.h>#else#ifdef HAVE_SYS_FCNTL_H#include <sys/fcntl.h>#endif#endif/* sys/machine.h */#ifdef HAVE_SYS_MACHINE_H#include <sys/machine.h>#endif/* limits.h */#ifdef HAVE_SYS_LIMITS_H#include <sys/limits.h>#else#ifdef HAVE_LIMITS_H#include <limits.h>#endif#endif/* stat.h */#ifdef HAVE_SYS_STAT_H#include <sys/stat.h>#else#ifdef HAVE_STAT_H#include <stat.h>#endif#endif/* Patch for problems in glibc6 */#if defined(__GLIBC__)#undef S_IFMT#undef S_IFDIR#define S_IFMT __S_IFMT#define S_IFDIR __S_IFDIR#endif/* in.h */#ifdef HAVE_NETINET_IN_H#include <netinet/in.h>#else#ifdef HAVE_IN_H#include <in.h>#endif#endif/* tcp.h */#ifdef HAVE_NETINET_TCP_H#include <netinet/tcp.h>#else#ifdef HAVE_TCP_H#include <tcp.h>#endif#endif/* file.h */#ifdef HAVE_SYS_FILE_H#include <sys/file.h>#endif/* systeminfo.h */#ifdef HAVE_SYS_SYSTEMINFO_H#include <sys/systeminfo.h>#endif/* ioctl.h */#ifdef HAVE_SYS_IOCTL_H#include <sys/ioctl.h>#endif/* termios.h */#ifdef HAVE_TERMIOS_H#include <termios.h>#endif/* time.h */#ifdef TIME_WITH_SYS_TIME#include <sys/time.h>#include <time.h>#else#ifdef HAVE_SYS_TIME_H#include <sys/time.h>#else#ifdef HAVE_TIME_H#include <time.h>#endif#endif#endif/* string{,s}.h */#ifdef HAVE_STRING_H#include <string.h>#else#ifdef HAVE_STRINGS_H#include <strings.h>#endif#endif/* syslog.h */#ifdef HAVE_SYSLOG_H#include <syslog.h>#else#ifdef HAVE_SYS_SYSLOG_H#include <sys/socket.h>#endif#endif/* socket.h */#ifdef HAVE_SYS_SOCKET_H#include <sys/socket.h>#else#ifdef HAVE_SOCKET_H#include <socket.h>#endif#endif/* socket.ext.h */#ifdef HAVE_SOCKET_EXT_H#include <socket.ext.h>#endif/* appkit.h */#ifdef HAVE_APPKIT_APPKIT_H#include <appkit/appkit.h>#else#ifdef HAVE_APPKIT_H#include <appkit.h>#endif#endif/* dn.h */#ifdef HAVE_DN_H#include <dn.h>#endif/* ipc.h */#ifdef HAVE_SYS_IPC_H#include <sys/ipc.h>#endif/* errno.h */#ifdef HAVE_ERRNO_H#include <errno.h>#else#ifdef HAVE_SYS_ERRNO_H#include <sys/errno.h>#else#ifdef HAVE_NET_ERRNO_H#include <net/errno.h>#endif#endif#endif/* pwd.h */#ifdef HAVE_PWD_H#include <pwd.h>#endif/* grp.h */#ifdef HAVE_GRP_H#include <grp.h>#endif/* inet.h */#ifdef HAVE_ARPA_INET_H#include <arpa/inet.h>#else#ifdef HAVE_INET_H#include <inet.h>#endif#endif/* netdb.h */#ifdef HAVE_NETDB_H#include <netdb.h>#endif/* manifest.h */#ifdef HAVE_MANIFEST_H#include <manifest.h>#endif/* bsdtypes.h */#ifdef HAVE_BSDTYPES_H#include <bsdtypes.h>#endif/* stdefs.h */#ifdef HAVE_STDEFS_H#include <stdefs.h>#endif/* bsdtime.h */#ifdef HAVE_BSDTIME_H#include <bsdtime.h>#endif/* select.h */#ifdef HAVE_SYS_SELECT_H#include <sys/select.h>#else#ifdef HAVE_SELECT_H#include <select.h>#endif#endif/* dnetdb.h */#ifdef HAVE_DNETDB_H#include <dnetdb.h>#endif/* ucx$inetdef.h */#ifdef HAVE_UCX_INETDEF_H#include <ucx$inetdef.h>#endif/* libc.h */#ifdef HAVE_LIBC_H#include <libc.h>#endif/* stdlib.h */#ifdef HAVE_STDLIB_H#include <stdlib.h>#endif/* malloc.h */#ifdef HAVE_MALLOC_H#include <malloc.h>#endif/* memory.h */#ifdef HAVE_MEMORY_H#include <memory.h>#endif/* unixlib.h */#ifdef HAVE_UNIXLIB_H#include <unixlib.h>#endif/* direct.h */#ifdef HAVE_DIRECT_H#include <direct.h>#endif/* ctype.h */#ifdef HAVE_CTYPE_H#include <ctype.h>#endif

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91电影在线观看| 欧美大片顶级少妇| 欧美一二三区在线观看| 国产精品嫩草影院av蜜臀| 亚洲国产精品嫩草影院| 成人一级视频在线观看| 91精品一区二区三区久久久久久| 中文字幕日韩av资源站| 国产真实乱对白精彩久久| 欧美日韩视频不卡| 亚洲欧美国产三级| 99久久国产免费看| 亚洲精品在线一区二区| 麻豆久久久久久久| 91精品免费观看| 五月天婷婷综合| 91国偷自产一区二区三区成为亚洲经典| 久久久精品2019中文字幕之3| 秋霞成人午夜伦在线观看| 欧美日韩一级黄| 亚洲一级片在线观看| 91香蕉视频mp4| 国产精品高潮呻吟久久| 成人免费看的视频| 国产欧美一区二区在线观看| 国产一区二区三区久久久| 亚洲精品一区二区三区精华液 | 国产激情一区二区三区桃花岛亚洲| 欧美人动与zoxxxx乱| 丝袜诱惑亚洲看片| 欧美日韩国产经典色站一区二区三区| 亚洲一区二区三区视频在线| 欧美在线免费观看视频| 亚洲美女免费视频| 欧美日韩电影在线播放| 午夜电影网亚洲视频| 日韩午夜在线观看| 成人少妇影院yyyy| 日韩美女视频一区| 在线区一区二视频| 视频精品一区二区| 国产成人h网站| 不卡一区二区在线| 久久蜜桃香蕉精品一区二区三区| 亚洲国产日韩av| 成人av综合一区| 久久久久久电影| 国产欧美一区二区精品久导航| 国产成人一级电影| 尤物视频一区二区| 91麻豆精品国产综合久久久久久| 美女免费视频一区二区| 国产亚洲欧美在线| 色综合天天综合色综合av| 亚洲国产精品久久人人爱蜜臀| 91精品一区二区三区在线观看| 国产精品一区二区久激情瑜伽| 亚洲欧洲三级电影| 欧美精品一二三| 国产风韵犹存在线视精品| 综合中文字幕亚洲| 91精品国产综合久久精品| 国产传媒一区在线| 亚洲国产日韩综合久久精品| 欧美精品一区二区高清在线观看| aa级大片欧美| 美国三级日本三级久久99| 国产精品欧美一区喷水| 欧美日本高清视频在线观看| 国产成人精品三级麻豆| 午夜欧美视频在线观看| 欧美国产亚洲另类动漫| 69久久99精品久久久久婷婷 | 日韩av一区二区三区| 久久久综合激的五月天| 欧美亚洲一区二区在线| 国内一区二区在线| 亚洲gay无套男同| 国产精品久线观看视频| 欧美大度的电影原声| 91视频国产资源| 国产一区美女在线| 婷婷综合五月天| 亚洲精品亚洲人成人网在线播放| 久久亚区不卡日本| 91精品在线麻豆| 欧洲人成人精品| 国产精品亚洲第一区在线暖暖韩国| 亚洲国产精品麻豆| 中文字幕亚洲欧美在线不卡| 久久婷婷综合激情| 日韩午夜激情视频| 欧美日韩国产在线观看| 91蜜桃视频在线| 成人少妇影院yyyy| 丁香六月久久综合狠狠色| 久久精品免费看| 美女一区二区在线观看| 视频一区视频二区中文| 国产夫妻精品视频| 中文子幕无线码一区tr| 欧美日本韩国一区| 国产成人亚洲综合a∨婷婷图片 | 国产精品久久午夜| 国产日本亚洲高清| 欧美激情一区三区| 亚洲国产精品精华液ab| 国产日韩欧美高清在线| 久久久高清一区二区三区| 欧美tickling网站挠脚心| 日韩欧美电影在线| 欧美变态tickle挠乳网站| 日韩免费观看高清完整版在线观看| 日韩一区二区高清| 欧美xxxx老人做受| 久久网这里都是精品| 日本一区二区三区四区在线视频 | 久久久99精品久久| 国产亚洲女人久久久久毛片| 国产日韩精品一区二区浪潮av| 久久精品人人做人人爽97 | 日韩手机在线导航| 精品国产免费久久| 久久午夜免费电影| 国产日产亚洲精品系列| 国产精品你懂的在线| 亚洲免费在线播放| 天天操天天色综合| 国产一区二区在线观看视频| 国产91丝袜在线播放0| 不卡区在线中文字幕| 在线精品亚洲一区二区不卡| 欧美一区二区视频在线观看2020| 精品国产乱码久久久久久图片| 国产亚洲欧美日韩俺去了| 亚洲色图欧美偷拍| 日韩精品亚洲一区| 国产尤物一区二区在线| 91性感美女视频| 日韩欧美卡一卡二| 国产精品每日更新在线播放网址| 一卡二卡三卡日韩欧美| 美日韩一区二区三区| 不卡的av电影| 欧美一区二区三区视频免费播放 | 久久午夜羞羞影院免费观看| 国产精品国产三级国产aⅴ入口 | 色综合久久中文综合久久牛| 亚洲国产精品久久久男人的天堂| 精品欧美黑人一区二区三区| 日韩一区二区精品葵司在线| 久久综合色综合88| 国产日产精品一区| 国产精品人成在线观看免费| 国产精品国产自产拍高清av| 国产精品色一区二区三区| 国产精品国产三级国产| 亚洲人午夜精品天堂一二香蕉| 亚洲三级电影网站| 日韩欧美一级在线播放| 精品福利一二区| 亚洲图片欧美色图| 波多野结衣中文字幕一区二区三区| 欧美一级生活片| 亚洲综合图片区| 丁香激情综合国产| 久久一留热品黄| 日本一不卡视频| 91毛片在线观看| 久久精品一区二区三区不卡| 五月综合激情婷婷六月色窝| 91最新地址在线播放| 久久久三级国产网站| 日韩精品福利网| 色综合中文字幕国产| 一本久久精品一区二区| 欧美tickle裸体挠脚心vk| 亚洲欧美视频在线观看视频| 国产伦精品一区二区三区在线观看| 欧美日韩免费高清一区色橹橹 | 视频一区在线播放| 色哟哟国产精品| 成人欧美一区二区三区黑人麻豆| 日韩电影免费一区| 欧美日韩一区二区在线视频| 亚洲精品免费看| 91在线一区二区| 中文字幕在线不卡一区 | 成人免费在线视频| 丰满少妇久久久久久久| 日韩美女视频一区二区| 国产精品123| 久久久国产精品麻豆| 国产一区二区三区免费播放 | 欧美一区二区网站| 日本sm残虐另类| 日韩欧美国产系列| 国产最新精品免费| 国产日产欧美一区| av电影天堂一区二区在线|