]> git.tdb.fi Git - libs/net.git/blobdiff - source/net/constants.cpp
Move the address family enum into sockaddr.h
[libs/net.git] / source / net / constants.cpp
diff --git a/source/net/constants.cpp b/source/net/constants.cpp
deleted file mode 100644 (file)
index 4de22b4..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#include "platform_api.h"
-#include "constants.h"
-#include <stdexcept>
-
-using namespace std;
-
-namespace Msp {
-namespace Net {
-
-int family_to_sys(Family f)
-{
-       switch(f)
-       {
-       case UNSPEC: return AF_UNSPEC;
-       case INET:   return AF_INET;
-       case INET6:  return AF_INET6;
-       case UNIX:   return AF_UNIX;
-       default: throw invalid_argument("family_to_sys");
-       }
-}
-
-Family family_from_sys(int f)
-{
-       switch(f)
-       {
-       case AF_UNSPEC: return UNSPEC;
-       case AF_INET:   return INET;
-       case AF_INET6:  return INET6;
-       case AF_UNIX:   return UNIX;
-       default: throw invalid_argument("family_from_sys");
-       }
-}
-
-} // namespace Net
-} // namespace Msp