Thread: [Delta] Fillinstream??

Results 1 to 5 of 5
  1. #1 [Delta] Fillinstream?? 
    Donator


    Join Date
    Jan 2010
    Age
    29
    Posts
    4,122
    Thanks given
    274
    Thanks received
    551
    Rep Power
    738
    idk why this error showed up but does somebody know what it means



    and this the code hes sending me too in the error

    Code:
    	// forces to read forceRead bytes from the client - block until we have
    	// received those
    	private void fillInStream(int forceRead) throws java.io.IOException {
    		inStream.currentOffset = 0;
    		in.read(inStream.buffer, 0, forceRead);
    		//in.readFully(inStream.buffer, 0, forceRead);//in.read(inStream.buffer, 0, forceRead);
    	}
    Reply With Quote  
     

  2. #2  
    Registered Member
    Mister Maggot's Avatar
    Join Date
    Dec 2008
    Posts
    7,227
    Thanks given
    3,283
    Thanks received
    2,875
    Rep Power
    5000
    It says in plain English "socket closed"..

    The socket's closed.
    Reply With Quote  
     

  3. #3  
    Donator


    Join Date
    Jan 2010
    Age
    29
    Posts
    4,122
    Thanks given
    274
    Thanks received
    551
    Rep Power
    738
    im not english ftw?
    Reply With Quote  
     

  4. #4  
    Registered Member
    Mister Maggot's Avatar
    Join Date
    Dec 2008
    Posts
    7,227
    Thanks given
    3,283
    Thanks received
    2,875
    Rep Power
    5000
    idk why this error showed up but does somebody know what it means

    You speak clear English.
    Reply With Quote  
     

  5. #5  
    my rep is h4x0r3d


    Join Date
    Dec 2006
    Posts
    1,760
    Thanks given
    10
    Thanks received
    8
    Rep Power
    207
    private void fillInStream(int forceRead) {
    inStream.currentOffset = 0;
    try {
    in.read(inStream.buffer, 0, forceRead);
    } catch (Exception ex) {

    }
    //in.readFully(inStream.buffer, 0, forceRead);//in.read(inStream.buffer, 0, forceRead);
    }

    problem solved, stop QQ
    Quote Originally Posted by super_ View Post
    this is shit. you are shit. gtfo retard.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •