• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/ssl/
1/*
2	ssl.h
3
4	Example SSL-secure client and server.
5
6	SSL-enabled services use the gSOAP SSL interface. See sslclient.c and
7	sslserver.c for example code with instructions and the gSOAP
8	documentation more details.
9
10--------------------------------------------------------------------------------
11gSOAP XML Web services tools
12Copyright (C) 2001-2008, Robert van Engelen, Genivia, Inc. All Rights Reserved.
13This software is released under one of the following two licenses:
14GPL or Genivia's license for commercial use.
15--------------------------------------------------------------------------------
16GPL license.
17
18This program is free software; you can redistribute it and/or modify it under
19the terms of the GNU General Public License as published by the Free Software
20Foundation; either version 2 of the License, or (at your option) any later
21version.
22
23This program is distributed in the hope that it will be useful, but WITHOUT ANY
24WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
25PARTICULAR PURPOSE. See the GNU General Public License for more details.
26
27You should have received a copy of the GNU General Public License along with
28this program; if not, write to the Free Software Foundation, Inc., 59 Temple
29Place, Suite 330, Boston, MA 02111-1307 USA
30
31Author contact information:
32engelen@genivia.com / engelen@acm.org
33--------------------------------------------------------------------------------
34A commercial use license is available from Genivia, Inc., contact@genivia.com
35--------------------------------------------------------------------------------
36*/
37
38//gsoap ns service name:	ssl
39//gsoap ns service style:	rpc
40//gsoap ns service encoding:	encoded
41//gsoap ns service namespace:	urn:ssl
42//gsoap ns service location:	https://localhost:18081
43
44typedef double xsd__double;
45
46int ns__add(xsd__double a, xsd__double b, xsd__double *result);
47