| 146 | int csock = -1, dsock = -1; |
| 147 | |
| 148 | void |
| 149 | __attribute__((destructor)) close_ng_socks() |
| 150 | { |
| 151 | if (csock >= 0) { |
| 152 | ng_close(csock); |
| 153 | } |
| 154 | |
| 155 | if (dsock >= 0) { |
| 156 | ng_close(dsock); |
| 157 | } |
| 158 | } |
| 159 | #endif |
| 160 | |
| 161 | /* |
nothing calls this directly
no test coverage detected