Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

23 righe
516 B

  1. // Copyright 2013 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package ipv6
  5. func (f *icmpv6Filter) accept(typ ICMPType) {
  6. // TODO(mikio): implement this
  7. }
  8. func (f *icmpv6Filter) block(typ ICMPType) {
  9. // TODO(mikio): implement this
  10. }
  11. func (f *icmpv6Filter) setAll(block bool) {
  12. // TODO(mikio): implement this
  13. }
  14. func (f *icmpv6Filter) willBlock(typ ICMPType) bool {
  15. // TODO(mikio): implement this
  16. return false
  17. }