Highly-opinionated (ex-bullshit-free) MTPROTO proxy for Telegram. If you use v1.0 or upgrade broke you proxy, please read the chapter Version 2
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

pools.go 242B

123456789101112131415161718
  1. package relay
  2. import "sync"
  3. var bufPool = sync.Pool{
  4. New: func() any {
  5. b := make([]byte, bufPoolSize)
  6. return &b
  7. },
  8. }
  9. func acquireBuffer() *[]byte {
  10. return bufPool.Get().(*[]byte)
  11. }
  12. func releaseBuffer(p *[]byte) {
  13. bufPool.Put(p)
  14. }