- Timestamp:
- Nov 12, 2016 3:14:43 PM (4 years ago)
- Branches:
- master
- Children:
- 6ed329d
- Parents:
- 6acc23af
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
router/java/src/net/i2p/router/transport/TransportUtil.java
r6acc23af r2c65173 26 26 public static final String SSU_IPV6_CONFIG = "i2np.udp.ipv6"; 27 27 public static final String PROP_IPV4_FIREWALLED = "i2np.ipv4.firewalled"; 28 /** @since 0.9.28 */ 29 public static final String PROP_IPV6_FIREWALLED = "i2np.ipv6.firewalled"; 28 30 29 31 public enum IPv6Config { … … 100 102 * 101 103 * @param transportStyle ignored 102 * @since 0.9.27 104 * @since 0.9.27, implemented in 0.9.28 103 105 */ 104 106 public static boolean isIPv6Firewalled(RouterContext ctx, String transportStyle) { 105 // TODO 106 //return ctx.getBooleanProperty(PROP_IPV6_FIREWALLED); 107 return false; 107 return ctx.getBooleanProperty(PROP_IPV6_FIREWALLED); 108 108 } 109 109
Note: See TracChangeset
for help on using the changeset viewer.