function resolveSrv
Usage in Deno
```typescript import { resolveSrv } from "node:node__dns.d.ts"; ```
resolveSrv(hostname: string,callback: (err: ErrnoException | null,addresses: SrvRecord[],) => void,): void
> [!WARNING] Deno compatibility
> The `ttl` option is not supported.
Uses the DNS protocol to resolve service records (`SRV` records) for the `hostname`. The `addresses` argument passed to the `callback` function will
be an array of objects with the following properties:
* `priority`
* `weight`
* `port`
* `name`
```js
{
priority: 10,
weight: 5,
port: 21223,
name: 'service.example.com'
}
```
callback: (err: ErrnoException | null,addresses: SrvRecord[],) => void
void