Removed support for non-batching and bidirectional transfer protocols

This commit is contained in:
Michiel Broek
2004-11-05 20:25:33 +00:00
parent 769a1884b3
commit c22e9948e1
19 changed files with 128 additions and 289 deletions

View File

@@ -76,8 +76,7 @@ char sProtName[21]; /* Current Transfer Protocol name */
char sProtUp[51]; /* Upload path & binary */
char sProtDn[51]; /* Download path & binary */
char sProtAdvice[31]; /* Advice for protocol */
unsigned uProtBatch; /* Batching protocol */
unsigned uProtBidir; /* Bi-directional protocol */
unsigned uProtInternal; /* Internal protocol */
int iProtEfficiency; /* Protocol efficiency */

View File

@@ -684,8 +684,8 @@ struct prot {
char ProtUp[51]; /* Upload Path & Binary */
char ProtDn[51]; /* Download Path & Bianry */
unsigned Available : 1; /* Available/Not Available */
unsigned Batch : 1; /* Batching protocol */
unsigned Bidir : 1; /* Bi Directional */
unsigned xBatch : 1;
unsigned xBidir : 1;
unsigned Deleted : 1; /* Protocol is deleted */
unsigned Internal : 1; /* Internal protocol */
char Advice[31]; /* Small advice to user */