~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to tools/gsoap/gsoap-linux-2.7/samples/router/.svn/text-base/router.h.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*      router.h
2
 
 
3
 
        Simple Web Service message router (relay server)
4
 
 
5
 
        Copyright (C) 2000-2002 Robert A. van Engelen. All Rights Reserved.
6
 
 
7
 
*/
8
 
 
9
 
struct t__Routing
10
 
{ char *key;            // key matches SOAPAction or query string or endpoint URL
11
 
  char *endpoint;
12
 
  char *userid;         // optional HTTP Authorization userid
13
 
  char *passwd;         // optional HTTP Authorization passwd
14
 
};
15
 
 
16
 
struct t__RoutingTable
17
 
{ int __size;
18
 
  struct t__Routing *__ptr;
19
 
};