| 136 | |
| 137 | struct TSharedSocket: public TSocketHolder, public TAtomicRefCount<TSharedSocket> { |
| 138 | inline TSharedSocket(TSocketHolder& s) |
| 139 | : TSocketHolder(s.Release()) |
| 140 | { |
| 141 | InputConnections()->Counter.Inc(); |
| 142 | } |
| 143 | |
| 144 | ~TSharedSocket() { |
| 145 | InputConnections()->Counter.Dec(); |
nothing calls this directly
no test coverage detected