ioctl(Socket, GetRequest :: gifconf) ->
{ok, IFConf :: [#{name := string, addr := sockaddr()}]} |
{error, Reason}
OTP 24.2ioctl(Socket, GetRequest :: nread | nwrite | nspace) ->
{ok, NumBytes :: integer() >= 0} | {error, Reason}
OTP 26.1ioctl(Socket, GetRequest :: atmark) ->
{ok, Available :: boolean()} | {error, Reason}
OTP 26.1ioctl(Socket, GetRequest :: tcp_info) ->
{ok, Info :: map()} | {error, Reason}
OTP 26.1
類型:
Socket = socket()
Reason = posix() | closed
檢索套接字(設備)參數。
該函數根據GetRequest
參數檢索特定參數。
gifconf
-
返回接口(傳輸層)地址列表。
結果,接口列表,帶有名稱和地址的映射。
nread
-
獲取可立即讀取的字節數。
結果(字節數)是
integer()
。 nwrite
-
發送隊列中的字節數。
結果(字節數)是
integer()
。 nspace
-
獲取發送隊列中的可用空間。
結果(字節數)是
integer()
。 atmark
-
測試是否有oob(越界)數據等待讀取。
結果是
boolean()
。 tcp_info
-
返回已連接套接字的各種 TCP 相關信息。
結果是
map()
。
注意
查看當前平台是否支持 ioctl 請求:
Request = nread,
{ok, true} = socket:is_supported(ioctl_requests, Request),
.
.
.
相關用法
- erlang iolist_size(Item)用法及代碼示例
- erlang iolist_to_binary(IoListOrBinary)用法及代碼示例
- erlang iolist_to_iovec(IoListOrBinary)用法及代碼示例
- erlang is_file用法及代碼示例
- erlang is_dir用法及代碼示例
- erlang is_atom用法及代碼示例
- erlang is_key用法及代碼示例
- erlang is_tuple用法及代碼示例
- erlang is_binary用法及代碼示例
- erlang is_pid用法及代碼示例
- erlang is_process_alive用法及代碼示例
- erlang is_alive用法及代碼示例
- erlang init(UserData :: user_data(), AccessMode :: write | read, Fun :: file_op())用法及代碼示例
- erlang insert_element(Index, Tuple1, Term)用法及代碼示例
- erlang integer_to_binary(Integer)用法及代碼示例
- erlang integer_to_binary(Integer, Base)用法及代碼示例
- erlang integer_to_list(Integer)用法及代碼示例
- erlang integer_to_list(Integer, Base)用法及代碼示例
- erlang is_map_key(Key, Map)用法及代碼示例
- erlang is_process_alive(Pid)用法及代碼示例
- erlang in(Item, Q1 :: queue(Item))用法及代碼示例
- erlang in_r(Item, Q1 :: queue(Item))用法及代碼示例
- erlang init(Q1 :: queue(Item))用法及代碼示例
- erlang init_ack(Ret)用法及代碼示例
- erlang info()用法及代碼示例
注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 ioctl(Socket, GetRequest :: gifconf) -> {ok, IFConf :: [#{name := string, addr := sockaddr()}]} | {error, Reason}。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。