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

📄 url.h

📁 ping代码的封装
💻 H
字号:
/** * URL support * * Copyright (C) 2000, 2001 Jeffrey Fulmer <jdfulmer@armstrong.com> * This file is part of Siege * * 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; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * -- */#ifndef  URL_H#define  URL_Htypedef enum{  HTTP    = 1,  HTTPS   = 2,  ECHO    = 4,  SMTP    = 8,  POP3    = 16,  UNSPRTD = 32} PROTOCOL; /** * enum DIRECTIVE * HTTP request directive */typedef enum{  URL_GET   = 0,  URL_POST  = 1} DIRECTIVE;/** * URL struct URL */typedef struct{  PROTOCOL protocol;       /* currently only http/https   */  char *hostname;          /* DNS entry or IP address     */  int  port;               /* tcp port num, defs: 80, 443 */  char *pathname;          /* path to http resource.      */  DIRECTIVE calltype;      /* request: GET/POST/HEAD etc. */  size_t postlen;  char *postdata;  char *posttemp;} URL;int  protocol_length( char *url ); int  is_supported( char* url );int  get_default_port( PROTOCOL p );PROTOCOL get_protocol( const char *url );void insert_childid( URL *U, int mypid );char *process_post_data( char *datap );URL  build_url( char *url );URL  add_url( char *url );#endif/*URL_H*/

⌨️ 快捷键说明

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