Sockets.connect — Method.

  1. connect([host], port::Integer) -> TCPSocket

Connect to the host host on port port.

Sockets.connect — Method.

  1. connect(path::AbstractString) -> PipeEndpoint

Connect to the named pipe / UNIX domain socket at path.

Sockets.listen — Method.

  1. listen([addr, ]port::Integer; backlog::Integer=BACKLOG_DEFAULT) -> TCPServer

Listen on port on the address specified by addr. By default this listens on localhost only. To listen on all interfaces pass IPv4(0) or IPv6(0) as appropriate. backlog determines how many connections can be pending (not having called accept) before the server will begin to reject them. The default value of backlog is 511.

Sockets.listen — Method.

  1. listen(path::AbstractString) -> PipeServer

Create and listen on a named pipe / UNIX domain socket.

Sockets.getaddrinfo — Function.

  1. getalladdrinfo(host::AbstractString, IPAddr=IPv4) -> IPAddr

Gets the first IP address of the host of the specified IPAddr type. Uses the operating system's underlying getaddrinfo implementation, which may do a DNS lookup.

Sockets.getipaddr — Function.

  1. getipaddr() -> IPAddr

Get the IP address of the local machine.

Examples

  1. julia> getipaddr()
  2. ip"192.168.1.28"

Sockets.getalladdrinfo — Function.

  1. getalladdrinfo(host::AbstractString) -> Vector{IPAddr}

Gets all of the IP addresses of the host. Uses the operating system's underlying getaddrinfo implementation, which may do a DNS lookup.

Example

  1. julia> getalladdrinfo("google.com")
  2. 2-element Array{IPAddr,1}:
  3. ip"172.217.6.174"
  4. ip"2607:f8b0:4000:804::200e"

Sockets.getnameinfo — Function.

  1. getnameinfo(host::IPAddr) -> String

Performs a reverse-lookup for IP address to return a hostname and service using the operating system's underlying getnameinfo implementation.

Examples

  1. julia> getnameinfo(Sockets.IPv4("8.8.8.8"))
  2. "google-public-dns-a.google.com"

Sockets.getsockname — Function.

  1. getsockname(sock::Union{TCPServer, TCPSocket}) -> (IPAddr, UInt16)

Get the IP address and port that the given socket is bound to.

Sockets.getpeername — Function.

  1. getpeername(sock::TCPSocket) -> (IPAddr, UInt16)

Get the IP address and port of the remote endpoint that the given socket is connected to. Valid only for connected TCP sockets.

Sockets.IPv4 — Type.

  1. IPv4(host::Integer) -> IPv4

Returns an IPv4 object from ip address host formatted as an Integer.

  1. julia> IPv4(3223256218)
  2. ip"192.30.252.154"

Sockets.IPv6 — Type.

  1. IPv6(host::Integer) -> IPv6

Returns an IPv6 object from ip address host formatted as an Integer.

  1. julia> IPv6(3223256218)
  2. ip"::c01e:fc9a"

Sockets.TCPSocket — Type.

  1. TCPSocket(; delay=true)

Open a TCP socket using libuv. If delay is true, libuv delays creation of the socket's file descriptor till the first bind call. TCPSocket has various fields to denote the state of the socket as well as its send/receive buffers.

Sockets.UDPSocket — Type.

  1. UDPSocket()

Open a UDP socket using libuv. UDPSocket has various fields to denote the state of the socket.

Sockets.accept — Function.

  1. accept(server[,client])

Accepts a connection on the given server and returns a connection to the client. An uninitialized client stream may be provided, in which case it will be used instead of creating a new stream.

Sockets.listenany — Function.

  1. listenany([host::IPAddr,] port_hint) -> (UInt16, TCPServer)

Create a TCPServer on any port, using hint as a starting point. Returns a tuple of the actual port that the server was created on and the server itself.

Base.bind — Function.

  1. bind(socket::Union{UDPSocket, TCPSocket}, host::IPAddr, port::Integer; ipv6only=false, reuseaddr=false, kws...)

Bind socket to the given host:port. Note that 0.0.0.0 will listen on all devices.

  • The ipv6only parameter disables dual stack mode. If ipv6only=true, only an IPv6 stack is created.
  • If reuseaddr=true, multiple threads or processes can bind to the same address without error if they all set reuseaddr=true, but only the last to bind will receive any traffic.
  1. bind(chnl::Channel, task::Task)

Associate the lifetime of chnl with a task. Channel chnl is automatically closed when the task terminates. Any uncaught exception in the task is propagated to all waiters on chnl.

The chnl object can be explicitly closed independent of task termination. Terminating tasks have no effect on already closed Channel objects.

When a channel is bound to multiple tasks, the first task to terminate will close the channel. When multiple channels are bound to the same task, termination of the task will close all of the bound channels.

Examples

  1. julia> c = Channel(0);
  2. julia> task = @async foreach(i->put!(c, i), 1:4);
  3. julia> bind(c,task);
  4. julia> for i in c
  5. @show i
  6. end;
  7. i = 1
  8. i = 2
  9. i = 3
  10. i = 4
  11. julia> isopen(c)
  12. false
  1. julia> c = Channel(0);
  2. julia> task = @async (put!(c,1);error("foo"));
  3. julia> bind(c,task);
  4. julia> take!(c)
  5. 1
  6. julia> put!(c,1);
  7. ERROR: foo
  8. Stacktrace:
  9. [...]

source

Sockets.send — Function.

  1. send(socket::UDPSocket, host, port::Integer, msg)

Send msg over socket to host:port.

Sockets.recv — Function.

  1. recv(socket::UDPSocket)

Read a UDP packet from the specified socket, and return the bytes received. This call blocks.

Sockets.recvfrom — Function.

  1. recvfrom(socket::UDPSocket) -> (address, data)

Read a UDP packet from the specified socket, returning a tuple of (address, data), where address will be either IPv4 or IPv6 as appropriate.

Sockets.setopt — Function.

  1. setopt(sock::UDPSocket; multicast_loop = nothing, multicast_ttl=nothing, enable_broadcast=nothing, ttl=nothing)

Set UDP socket options.

  • multicast_loop: loopback for multicast packets (default: true).
  • multicast_ttl: TTL for multicast packets (default: nothing).
  • enable_broadcast: flag must be set to true if socket will be used for broadcast messages, or else the UDP system will return an access error (default: false).
  • ttl: Time-to-live of packets sent on the socket (default: nothing).

原文: https://juliacn.github.io/JuliaZH.jl/latest/stdlib/Sockets/