$(LIBRARY)(getproto.o) \
$(LIBRARY)(getprotoent.o) \
$(LIBRARY)(getservent.o) \
+ $(LIBRARY)(getsockname.o) \
+ $(LIBRARY)(getsockopt.o) \
$(LIBRARY)(getsrvbyname.o) \
$(LIBRARY)(getsrvbyport.o) \
$(LIBRARY)(hton.o) \
$(LIBRARY)(getservent.o): getservent.c
$(CC1) getservent.c
+$(LIBRARY)(getsockname.o): getsockname.c
+ $(CC1) getsockname.c
+
+$(LIBRARY)(getsockopt.o): getsockopt.c
+ $(CC1) getsockopt.c
+
$(LIBRARY)(getsrvbyname.o): getsrvbyname.c
$(CC1) getsrvbyname.c
--- /dev/null
+#include <errno.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/ioctl.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+
+#include <net/gen/in.h>
+#include <net/gen/tcp.h>
+#include <net/gen/tcp_io.h>
+#include <net/gen/udp.h>
+#include <net/gen/udp_io.h>
+
+#define DEBUG 0
+
+static int _tcp_getsockname(int socket, struct sockaddr *_RESTRICT address,
+ socklen_t *_RESTRICT address_len, nwio_tcpconf_t *tcpconfp);
+
+int getsockname(int socket, struct sockaddr *_RESTRICT address,
+ socklen_t *_RESTRICT address_len)
+{
+ int r;
+ nwio_tcpconf_t tcpconf;
+
+ r= ioctl(socket, NWIOGTCPCONF, &tcpconf);
+ if (r != -1 || errno != ENOTTY)
+ {
+ if (r == -1)
+ {
+ /* Bad file descriptor */
+ return -1;
+ }
+ return _tcp_getsockname(socket, address, address_len,
+ &tcpconf);
+ }
+
+#if DEBUG
+ fprintf(stderr, "getsockname: not implemented for fd %d\n", socket);
+#endif
+ errno= ENOSYS;
+ return -1;
+}
+
+static int _tcp_getsockname(int socket, struct sockaddr *_RESTRICT address,
+ socklen_t *_RESTRICT address_len, nwio_tcpconf_t *tcpconfp)
+{
+ socklen_t len;
+ struct sockaddr_in sin;
+
+ memset(&sin, '\0', sizeof(sin));
+ sin.sin_family= AF_INET;
+ sin.sin_addr.s_addr= tcpconfp->nwtc_locaddr;
+ sin.sin_port= tcpconfp->nwtc_locport;
+
+ len= *address_len;
+ if (len > sizeof(sin))
+ len= sizeof(sin);
+ memcpy(address, &sin, len);
+ *address_len= len;
+
+ return 0;
+}
+
--- /dev/null
+#include <assert.h>
+#include <errno.h>
+#include <stdio.h>
+#include <string.h>
+#include <sys/ioctl.h>
+#include <sys/socket.h>
+#include <sys/types.h>
+
+#include <net/gen/in.h>
+#include <net/gen/tcp.h>
+#include <net/gen/tcp_io.h>
+
+#define DEBUG 0
+
+static int _tcp_getsockopt(int socket, int level, int option_name,
+ void *_RESTRICT option_value, socklen_t *_RESTRICT option_len);
+
+int getsockopt(int socket, int level, int option_name,
+ void *_RESTRICT option_value, socklen_t *_RESTRICT option_len)
+{
+ int r;
+ nwio_tcpopt_t tcpopt;
+
+ r= ioctl(socket, NWIOGTCPOPT, &tcpopt);
+ if (r != -1 || errno != ENOTTY)
+ {
+ if (r == -1)
+ {
+ /* Bad file descriptor */
+ return -1;
+ }
+ return _tcp_getsockopt(socket, level, option_name,
+ option_value, option_len);
+ }
+
+#if DEBUG
+ fprintf(stderr, "getsockopt: not implemented for fd %d\n", socket);
+#endif
+ errno= ENOSYS;
+ return -1;
+}
+
+static int _tcp_getsockopt(int socket, int level, int option_name,
+ void *_RESTRICT option_value, socklen_t *_RESTRICT option_len)
+{
+ int i;
+
+ if (level == SOL_SOCKET && option_name == SO_KEEPALIVE)
+ {
+ i= 1; /* Keepalive is always on */
+ if (*option_len < sizeof(i))
+ memcpy(option_value, &i, *option_len);
+ else
+ memcpy(option_value, &i, sizeof(i));
+ *option_len= sizeof(i);
+ return 0;
+ }
+#if DEBUG
+ fprintf(stderr, "_tcp_getsocketopt: level %d, name %d\n",
+ level, option_name);
+#endif
+
+ errno= ENOSYS;
+ return -1;
+}
+
}
return 0;
}
+#if DEBUG
fprintf(stderr, "_tcp_setsocketopt: level %d, name %d\n",
level, option_name);
+#endif
- assert(0);
+ errno= ENOSYS;
+ return -1;
}