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

📄 fcgirequest.java

📁 FastCGI,语言无关的、可伸缩架构的CGI开放扩展
💻 JAVA
字号:
/* * @(#)FCGIRequest.java * *  FastCGi compatibility package Interface * *  Copyright (c) 1996 Open Market, Inc. * * See the file "LICENSE.TERMS" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * $Id: FCGIRequest.java,v 1.3 2000/03/21 12:12:26 robs Exp $ */package com.fastcgi;import java.net.*;import java.io.FileDescriptor;import java.util.Properties;public class FCGIRequest {    private static final String RCSID = "$Id: FCGIRequest.java,v 1.3 2000/03/21 12:12:26 robs Exp $";    /* This class has no methods. Right now we are single threaded    * so there is only one request object at any given time which    * is refrenced by an FCGIInterface class variable . All of this    * object's data could just as easily be declared directly there.    * When we thread, this will change, so we might as well use a    * seperate class. In line with this thinking, though somewhat    * more perversely, we kept the socket here.    */    /*     * class variables     */    /*public static Socket  socket; */    // same for all requests    /*     * instance variables     */    public Socket       socket;    public boolean      isBeginProcessed;    public int      requestID;    public boolean      keepConnection;    public int      role;    public int      appStatus;    public int      numWriters;    public FCGIInputStream  inStream;    public FCGIOutputStream outStream;    public FCGIOutputStream errStream;    public Properties   params;}

⌨️ 快捷键说明

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