aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/soc_u.h
diff options
context:
space:
mode:
authorGravatar Subv <subv2112@gmail.com>2014-12-08 23:52:27 -0500
committerGravatar Subv <subv2112@gmail.com>2014-12-31 10:51:44 -0500
commit97a7381d29b69dbe760598e70669c16573304ad4 (patch)
treef4e336af1e5cf5d72c2665470a96a9db73711ae7 /src/core/hle/service/soc_u.h
parent59bba04628772ad8995f38137dcfe8bbd05f949b (diff)
SOC_U: Preliminary implementation of sockets.
Stubbed CreateMemoryBlock Using Berkeley sockets, and Winsock2.2 on Windows. So far ftpony creates the socket and accepts incoming connections SOC_U: Renamed functions to maintain consistency Also prevents possible scope errors / conflicts with the actual Berkeley socket functions SOCU: Close all the opened sockets when cleaning up SOCU
Diffstat (limited to 'src/core/hle/service/soc_u.h')
-rw-r--r--src/core/hle/service/soc_u.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/soc_u.h b/src/core/hle/service/soc_u.h
index 2edf3b48..483b3111 100644
--- a/src/core/hle/service/soc_u.h
+++ b/src/core/hle/service/soc_u.h
@@ -14,6 +14,7 @@ namespace SOC_U {
class Interface : public Service::Interface {
public:
Interface();
+ ~Interface();
std::string GetPortName() const override {
return "soc:U";