diff options
author | Princess of Sleeping | 2018-11-19 22:26:34 +0900 |
---|---|---|
committer | GitHub | 2018-11-19 22:26:34 +0900 |
commit | 97dd1772b1bd9a2be66fb747874dad0819215251 (patch) | |
tree | fd4f7278e724594e343ff4e5f3e8e9c48ecf2aa2 /include/kernel/net/net.h | |
parent | Add ksceNetConnect and sceNetConnectForSyscalls (diff) | |
download | vds-libraries-97dd1772b1bd9a2be66fb747874dad0819215251.tar.gz |
Add ksceNetConnect
Diffstat (limited to 'include/kernel/net/net.h')
-rw-r--r-- | include/kernel/net/net.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/kernel/net/net.h b/include/kernel/net/net.h index 5670c96..a4d0c7a 100644 --- a/include/kernel/net/net.h +++ b/include/kernel/net/net.h @@ -539,6 +539,7 @@ typedef struct SceNetIcmpHeader { int sceNetSocket(const char *name, int domain, int type, int protocol); int sceNetAccept(int s, SceNetSockaddr *addr, unsigned int *addrlen); int sceNetBind(int s, const SceNetSockaddr *addr, unsigned int addrlen); +int sceNetConnect(int s, const SceNetSockaddr *name, unsigned int namelen); int sceNetListen(int s, int backlog); int sceNetRecvfrom(int s, void *buf, unsigned int len, int flags, SceNetSockaddr *from, unsigned int *fromlen); int sceNetSendto(int s, const void *msg, unsigned int len, int flags, const SceNetSockaddr *to, unsigned int tolen); |