#include <netdb.h> struct netent *getnetent(void); struct netent *getnetbyname(const char *name); struct netent *getnetbyaddr(uint32_t net, int type); void setnetent(int stayopen); void endnetent(void);
getnetbyname() 関数は、ネットワーク名 name にマッチするエントリーを データベースから探し、そのエントリーを収めた netent 構造体を返す。
getnetbyaddr() 関数は、type 型のネットワーク番号 net にマッチするエントリーを データベースから探し、そのエントリーを収めた netent 構造体を返す。 net 引数はホストバイトオーダでなければならない。
setnetent() 関数はデータベースへの接続をオープンし、 次の読み込みエントリーを先頭のエントリーに設定する。 stayopen が 0 でない場合、 一つ一つの getnet*() 関数の呼び出し間でデータベースへの接続をクローズしない。
endnetent() 関数はデータベースへの接続をクローズする。
netent 構造体は <netdb.h> で以下のように定義されている。
struct netent {
char *n_name; /* official network name */
char **n_aliases; /* alias list */
int n_addrtype; /* net address type */
uint32_t n_net; /* network number */ }
netent 構造体のメンバは以下の通り。
Interface | Attribute | Value |
getnetent() | Thread safety | MT-Unsafe race:netent race:netentbuf env locale |
getnetbyname() | Thread safety | MT-Unsafe race:netbyname env locale |
getnetbyaddr() | Thread safety | MT-Unsafe race:netbyaddr locale |
setnetent(), endnetent() |
Thread safety | MT-Unsafe race:netent env locale |
In the above table, netent in race:netent signifies that if any of the functions setnetent(), getnetent(), or endnetent() are used in parallel in different threads of a program, then data races could occur.
[man1]
[man2]
[man3]
[man4]
[man5]
[man6]
[man7]
[man8]
[a]
[b]
[c]
[d]
[e]
[f]
[g]
[h]
[i]
[j]
[k]
[l]
[m]
[n]
[o]
[p]
[q]
[r]
[s]
[t]
[u]
[v]
[w]
[x]
[y]
[z]