Changeset 1391 for branches/GNU/src/gcc/libjava/java/net/SocketImpl.java
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/net/SocketImpl.java (modified) (6 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/net/SocketImpl.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 75 75 * The port number the socket is bound to locally 76 76 */ 77 protected int localport ;77 protected int localport; 78 78 79 79 /** … … 96 96 * 97 97 * @param stream true for a stream socket, false for a datagram socket 98 99 98 100 */ 99 101 protected abstract void create(boolean stream) throws IOException; … … 118 120 */ 119 121 protected abstract void connect(InetAddress host, int port) 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 120 137 throws IOException; 121 138 … … 216 233 217 234 /** 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 218 260 * Returns the local port this socket is bound to 219 261 * … … 230 272 public String toString() 231 273 { 232 return "[addr=" + address.toString() + ",port=" + Integer.toString(port) 233 + ",localport=" + Integer.toString(localport) + "]"; 274 return "[addr=" + address 275 + ",port=" + port 276 + ",localport=" + localport + "]"; 234 277 } 235 278 … … 265 308 */ 266 309 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 267 326 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
