equal
deleted
inserted
replaced
496 # It is not guaranteed to be examined and used by other implementations. |
496 # It is not guaranteed to be examined and used by other implementations. |
497 # |
497 # |
498 # Example: |
498 # Example: |
499 # jdk.tls.disabledAlgorithms=MD5, SHA1, DSA, RSA keySize < 2048 |
499 # jdk.tls.disabledAlgorithms=MD5, SHA1, DSA, RSA keySize < 2048 |
500 |
500 |
|
501 |
|
502 # |
|
503 # Default ephemeral port ranges (operating system specific) |
|
504 # used by java.net.SocketPermission to interpret the meaning of the special |
|
505 # port value zero, as in the following example: |
|
506 # |
|
507 # SocketPermission("localhost:0" , "listen"); |
|
508 # |
|
509 # These can be overridden by the system properties: |
|
510 # |
|
511 # jdk.net.ephemeralPortRange.low and |
|
512 # jdk.net.ephemeralPortRange.high |
|
513 # |
|
514 # respectively. |
|
515 # |
|
516 network.ephemeralPortRange.low=49152 |
|
517 network.ephemeralPortRange.high=65535 |
|
518 |