File: _resolver.py

package info (click to toggle)
python-socks 2.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 544 kB
  • sloc: python: 5,195; sh: 8; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 722 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import socket
from curio.socket import getaddrinfo

from ... import _abc as abc


class Resolver(abc.AsyncResolver):
    async def resolve(self, host, port=0, family=socket.AF_UNSPEC):
        try:
            infos = await getaddrinfo(
                host=host,
                port=port,
                family=family,
                type=socket.SOCK_STREAM,
            )
        except socket.gaierror:  # pragma: no cover
            infos = None

        if not infos:  # pragma: no cover
            raise OSError('Can`t resolve address {}:{} [{}]'.format(host, port, family))

        infos = sorted(infos, key=lambda info: info[0])

        family, _, _, _, address = infos[0]
        return family, address[0]