]> Chaos Git - corbenik/ctrulib.git/commit
Overhauled soc service.
authormtheall <pigman46@gmail.com>
Thu, 20 Nov 2014 21:36:50 +0000 (15:36 -0600)
committermtheall <pigman46@gmail.com>
Thu, 20 Nov 2014 21:36:50 +0000 (15:36 -0600)
commit55608adaadeeda788c14fcc2c54b2dd987659929
tree1c929e44226b9a59392c0ef50db5d6c452f5d820
parent919917b7ed186f39313e424f3ef3e29005dd8d4f
Overhauled soc service.
39 files changed:
libctru/Makefile
libctru/include/3ds/services/soc.h
libctru/include/arpa/inet.h [new file with mode: 0644]
libctru/include/netdb.h
libctru/include/netinet/in.h
libctru/include/netinet/tcp.h
libctru/include/poll.h [new file with mode: 0644]
libctru/include/sys/ioctl.h [new file with mode: 0644]
libctru/include/sys/select.h [new file with mode: 0644]
libctru/include/sys/socket.h
libctru/source/services/soc.c [deleted file]
libctru/source/services/soc/soc_accept.c [new file with mode: 0644]
libctru/source/services/soc/soc_bind.c [new file with mode: 0644]
libctru/source/services/soc/soc_closesocket.c [new file with mode: 0644]
libctru/source/services/soc/soc_common.c [new file with mode: 0644]
libctru/source/services/soc/soc_common.h [new file with mode: 0644]
libctru/source/services/soc/soc_connect.c [new file with mode: 0644]
libctru/source/services/soc/soc_fcntl.c [new file with mode: 0644]
libctru/source/services/soc/soc_gethostbyname.c [new file with mode: 0644]
libctru/source/services/soc/soc_gethostid.c [new file with mode: 0644]
libctru/source/services/soc/soc_getpeername.c [new file with mode: 0644]
libctru/source/services/soc/soc_getsockname.c [new file with mode: 0644]
libctru/source/services/soc/soc_getsockopt.c [new file with mode: 0644]
libctru/source/services/soc/soc_inet_addr.c [new file with mode: 0644]
libctru/source/services/soc/soc_inet_aton.c [new file with mode: 0644]
libctru/source/services/soc/soc_inet_ntoa.c [new file with mode: 0644]
libctru/source/services/soc/soc_init.c [new file with mode: 0644]
libctru/source/services/soc/soc_ioctl.c [new file with mode: 0644]
libctru/source/services/soc/soc_listen.c [new file with mode: 0644]
libctru/source/services/soc/soc_poll.c [new file with mode: 0644]
libctru/source/services/soc/soc_recv.c [new file with mode: 0644]
libctru/source/services/soc/soc_recvfrom.c [new file with mode: 0644]
libctru/source/services/soc/soc_select.c [new file with mode: 0644]
libctru/source/services/soc/soc_send.c [new file with mode: 0644]
libctru/source/services/soc/soc_sendto.c [new file with mode: 0644]
libctru/source/services/soc/soc_setsockopt.c [new file with mode: 0644]
libctru/source/services/soc/soc_shutdown.c [new file with mode: 0644]
libctru/source/services/soc/soc_sockatmark.c [new file with mode: 0644]
libctru/source/services/soc/soc_socket.c [new file with mode: 0644]