4 /* Functions mentioned in <sys/socket.h> but not implemented */
6 int getsockopt(int a, int b, int c, void *d, int *e)
8 croak("Function \"getsockopt\" not implemented in this version of perl.");
12 int setsockopt(int a, int b, int c, void *d, int *e)
14 croak("Function \"setsockopt\" not implemented in this version of perl.");
19 int recvmsg(int a, struct msghdr *b, int c)
21 croak("Function \"recvmsg\" not implemented in this version of perl.");
25 int sendmsg(int a, struct msghdr *b, int c)
27 croak("Function \"sendmsg\" not implemented in this version of perl.");
32 /* Functions mentioned in <netdb.h> but not implemented */
33 struct netent *getnetbyname(const char *a)
35 croak("Function \"getnetbyname\" not implemented in this version of perl.");
36 return (struct netent *)NULL;
39 struct netent *getnetbyaddr(long a, int b)
41 croak("Function \"getnetbyaddr\" not implemented in this version of perl.");
42 return (struct netent *)NULL;
45 struct netent *getnetent()
47 croak("Function \"getnetent\" not implemented in this version of perl.");
48 return (struct netent *)NULL;
51 struct protoent *getprotobyname(const char *a)
53 croak("Function \"getprotobyname\" not implemented in this version of perl.");
54 return (struct protoent *)NULL;
57 struct protoent *getprotobynumber(int a)
59 croak("Function \"getprotobynumber\" not implemented in this version of perl.");
60 return (struct protoent *)NULL;
63 struct protoent *getprotoent()
65 croak("Function \"getprotoent\" not implemented in this version of perl.");
66 return (struct protoent *)NULL;
69 struct servent *getservbyport(int a, const char *b)
71 croak("Function \"getservbyport\" not implemented in this version of perl.");
72 return (struct servent *)NULL;
75 struct servent *getservent()
77 croak("Function \"getservent\" not implemented in this version of perl.");
78 return (struct servent *)NULL;
81 void sethostent(int a)
83 croak("Function \"sethostent\" not implemented in this version of perl.");
88 croak("Function \"setnetent\" not implemented in this version of perl.");
91 void setprotoent(int a)
93 croak("Function \"setprotoent\" not implemented in this version of perl.");
96 void setservent(int a)
98 croak("Function \"setservent\" not implemented in this version of perl.");
103 croak("Function \"endnetent\" not implemented in this version of perl.");
108 croak("Function \"endprotoent\" not implemented in this version of perl.");
113 croak("Function \"endservent\" not implemented in this version of perl.");
118 croak("Function \"tcdrain\" not implemented in this version of perl.");
123 croak("Function \"tcflow\" not implemented in this version of perl.");
126 int tcflush(int, int)
128 croak("Function \"tcflush\" not implemented in this version of perl.");
131 int tcsendbreak(int, int)
133 croak("Function \"tcsendbreak\" not implemented in this version of perl.");