25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

23 satır
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. }