I use uucp over a pseudo-tty allocated by ssh with the i protocol.
Especially I call several peers via this method.

With the attached patch I can use one single port definition like 
port ssh
type pipe
command /usr/bin/ssh &lt;lots of ssh options&gt; \H
instead of one port definitioon per peer.The sys definitions then all
look like
system uucp-peer
address uucppeer.example.com
port ssh

Besides, the built-in tcp port could be replaced with this patch and
netcat, or the tty port with chat.

I thought it might be of general interest.

--- uucp-1.06.1/unix/pipe.c.orig	Mon Oct 18 21:31:14 1999
+++ uucp-1.06.1/unix/pipe.c	Mon Oct 18 21:46:07 1999
@@ -199,6 +199,7 @@
   struct ssysdep_conn *q;
   int aidescs[3];
   const char **pzprog;
+  char **p;
 
   q = (struct ssysdep_conn *) qconn-&gt;psysdep;
 
@@ -211,6 +212,11 @@
       ulog (LOG_ERROR, &quot;No command for pipe connection&quot;);
       return FALSE;
     }
+  
+  /* Look for a string \H and replaced it by the address given for this system */
+  for (p=pzprog; *p; p++)
+    if (!strcmp(*p, "\\H"))
+      *p = zphone;
 
   aidescs[0] = SPAWN_WRITE_PIPE;
   aidescs[1] = SPAWN_READ_PIPE;

