/[classpath]/inetlib/source/gnu/inet/pop3/POP3Connection.java
ViewVC logotype

Diff of /inetlib/source/gnu/inet/pop3/POP3Connection.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.19 by dog, Mon Jun 6 21:00:25 2005 UTC revision 1.20 by dog, Mon Aug 22 11:22:30 2005 UTC
# Line 40  package gnu.inet.pop3; Line 40  package gnu.inet.pop3;
40    
41  import java.io.BufferedInputStream;  import java.io.BufferedInputStream;
42  import java.io.BufferedOutputStream;  import java.io.BufferedOutputStream;
43    import java.io.EOFException;
44  import java.io.InputStream;  import java.io.InputStream;
45  import java.io.IOException;  import java.io.IOException;
46  import java.io.OutputStream;  import java.io.OutputStream;
# Line 770  public class POP3Connection Line 771  public class POP3Connection
771      throws IOException      throws IOException
772    {    {
773      response = in.readLine();      response = in.readLine();
774        if (response == null)
775          {
776            throw new EOFException("unexpected EOF");
777          }
778      logger.log(POP3_TRACE, "< " + response);      logger.log(POP3_TRACE, "< " + response);
779      if (response.indexOf(_OK) == 0)      if (response.indexOf(_OK) == 0)
780        {        {

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26