Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/net/SocketImpl.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    7575   * The port number the socket is bound to locally
    7676   */
    77   protected int localport;
     77  protected int localport;
    7878
    7979  /**
     
    9696   *
    9797   * @param stream true for a stream socket, false for a datagram socket
     98
     99
    98100   */
    99101  protected abstract void create(boolean stream) throws IOException;
     
    118120   */
    119121  protected abstract void connect(InetAddress host, int port)
     122
     123
     124
     125
     126
     127
     128
     129
     130
     131
     132
     133
     134
     135
     136
    120137    throws IOException;
    121138
     
    216233
    217234  /**
     235
     236
     237
     238
     239
     240
     241
     242
     243
     244
     245
     246
     247
     248
     249
     250
     251
     252
     253
     254
     255
     256
     257
     258
     259
    218260   * Returns the local port this socket is bound to
    219261   *
     
    230272  public String toString()
    231273  {
    232     return "[addr=" + address.toString() + ",port=" + Integer.toString(port)
    233       + ",localport=" + Integer.toString(localport) + "]";
     274    return "[addr=" + address
     275            + ",port=" + port
     276            + ",localport=" + localport + "]";
    234277  }
    235278
     
    265308   */
    266309  public abstract Object getOption(int option_id) throws SocketException;
     310
     311
     312
     313
     314
     315
     316
     317
     318
     319
     320
     321
     322
     323
     324
     325
    267326}
Note: See TracChangeset for help on using the changeset viewer.