diff options
Diffstat (limited to 'Sluift')
-rw-r--r-- | Sluift/SluiftClient.h | 1 | ||||
-rw-r--r-- | Sluift/SluiftComponent.cpp | 2 | ||||
-rw-r--r-- | Sluift/SluiftComponent.h | 2 | ||||
-rw-r--r-- | Sluift/component.cpp | 4 |
4 files changed, 4 insertions, 5 deletions
diff --git a/Sluift/SluiftClient.h b/Sluift/SluiftClient.h index 8cc815d..39ff0a8 100644 --- a/Sluift/SluiftClient.h +++ b/Sluift/SluiftClient.h @@ -83,3 +83,2 @@ namespace Swift { void connect(); - void connect(const std::string& host, int port); void waitConnected(int timeout); diff --git a/Sluift/SluiftComponent.cpp b/Sluift/SluiftComponent.cpp index ee09380..74728ee 100644 --- a/Sluift/SluiftComponent.cpp +++ b/Sluift/SluiftComponent.cpp @@ -42,3 +42,3 @@ SluiftComponent::~SluiftComponent() { -void SluiftComponent::connect(const std::string& host, int port) { +void SluiftComponent::connect(const std::string& host, unsigned short port) { if (component->isActive()) { diff --git a/Sluift/SluiftComponent.h b/Sluift/SluiftComponent.h index 9fc7101..586a94e 100644 --- a/Sluift/SluiftComponent.h +++ b/Sluift/SluiftComponent.h @@ -65,3 +65,3 @@ namespace Swift { - void connect(const std::string& host, int port); + void connect(const std::string& host, unsigned short port); void waitConnected(int timeout); diff --git a/Sluift/component.cpp b/Sluift/component.cpp index f3c2e37..c1b1da4 100644 --- a/Sluift/component.cpp +++ b/Sluift/component.cpp @@ -98,3 +98,3 @@ SLUIFT_LUA_FUNCTION(Component, async_connect) { std::string host; - int port = 0; + unsigned short port = 0; if (lua_istable(L, 2)) { @@ -104,3 +104,3 @@ SLUIFT_LUA_FUNCTION(Component, async_connect) { if (boost::optional<int> portInt = Lua::getIntField(L, 2, "port")) { - port = *portInt; + port = boost::numeric_cast<unsigned short>(*portInt); } |