diff --git a/src/native/network.cc b/src/native/network.cc index 2902ed6..dcf37bd 100644 --- a/src/native/network.cc +++ b/src/native/network.cc @@ -48,3 +48,11 @@ int tn3270_is_ready(h3270::session *ses) { return (int) ses->is_ready(); } +int tn3270_wait_for_ready(h3270::session *ses, int seconds) { + return (int) ses->wait_for_ready(seconds); +} + +int tn3270_wait(h3270::session *ses, int seconds) { + return (int) ses->wait(seconds); +} + -- libgit2 0.21.2