tcpip-forward.c: Removed unused variables shost, sport and sockopt

This commit is contained in:
Marc Hoersken 2014-05-18 10:16:24 +02:00
parent 106bacdebc
commit b9dc6112d7

View File

@ -57,20 +57,15 @@ int main(int argc, char *argv[])
LIBSSH2_SESSION *session;
LIBSSH2_LISTENER *listener = NULL;
LIBSSH2_CHANNEL *channel = NULL;
const char *shost;
unsigned int sport;
fd_set fds;
struct timeval tv;
ssize_t len, wr;
char buf[16384];
#ifdef WIN32
char sockopt;
WSADATA wsadata;
WSAStartup(MAKEWORD(2,0), &wsadata);
#else
int sockopt;
#endif
if (argc > 1)