Changeset - 8ce43b559a30
[Not reviewed]
default
0 2 0
Nathan Brink (binki) - 16 years ago 2009-08-16 21:27:48
ohnobinki@ohnopublishing.net
moved struct remoteio to private header
2 files changed with 7 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/common/libremoteio.h
Show inline comments
 
@@ -47,9 +47,15 @@ struct remoteio_server
 
struct remoteio_opts
 
{
 
  char *ssh_command;
 
  struct remoteio_server *servers;
 
};
 

	
 
struct remoteio {
 
  enum remoteio_method method;
 
  struct execio *execio;
 
};
 

	
 

	
 
int remoteio_config(cfg_t *cfg, struct remoteio_opts *opts);
 

	
 
#endif
src/common/remoteio.h
Show inline comments
 
@@ -24,16 +24,13 @@
 

	
 
/*
 
  RemoteIO provides an abstraction to the method of talking to a remote distrend. It is a layer on top of execio that should provide an equivalent interface.
 
 */
 

	
 
struct remoteio_opts;
 

	
 
struct remoteio {
 
  struct execio *execio;
 
};
 
struct remoteio;
 

	
 
/**
 
   Opens connection with remote distrend. Returns 1 on error.
 

	
 
   @todo should this be asynchronous?
 
 */
0 comments (0 inline, 0 general)