diff options
author | m0gg | 2006-03-07 16:20:37 +0000 |
---|---|---|
committer | m0gg | 2006-03-07 16:20:37 +0000 |
commit | 0f477f227836a1a79597f4a64c50030f742785db (patch) | |
tree | 17e2506c2ca85944584e5e14776798211b98fda2 /libcsoap | |
parent | 792fde0d169230910f1f62cb25071aee1d1b4342 (diff) | |
download | csoap-0f477f227836a1a79597f4a64c50030f742785db.tar.gz csoap-0f477f227836a1a79597f4a64c50030f742785db.tar.bz2 |
Removed C++ style comments
Diffstat (limited to 'libcsoap')
-rw-r--r-- | libcsoap/soap-client.c | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/libcsoap/soap-client.c b/libcsoap/soap-client.c index 5d42ec6..cdf4d55 100644 --- a/libcsoap/soap-client.c +++ b/libcsoap/soap-client.c @@ -1,5 +1,5 @@ /****************************************************************** -* $Id: soap-client.c,v 1.25 2006/03/06 13:37:38 m0gg Exp $ +* $Id: soap-client.c,v 1.26 2006/03/07 16:21:47 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -37,8 +37,6 @@ #include "soap-client.h" -// static int _block_socket = 0; - static herror_t _soap_client_build_result(hresponse_t * res, SoapEnv ** env) { @@ -60,21 +58,6 @@ _soap_client_build_result(hresponse_t * res, SoapEnv ** env) return soap_env_new_from_stream(res->in, env); } -// void -// soap_client_block_socket(int block) -// { -// _block_socket = block; -// -// return; -// } -// -// int -// soap_client_get_blockmode(void) -// { -// -// return _block_socket; -// } - herror_t soap_client_init_args(int argc, char *argv[]) { @@ -128,7 +111,6 @@ soap_client_invoke(SoapCtx * call, SoapCtx ** response, const char *url, return herror_new("soap_client_invoke", SOAP_ERROR_CLIENT_INIT, "Unable to create SOAP client!"); } -// conn->sock.block = soap_client_get_blockmode(); /* Set soap action */ if (soap_action != NULL) |