Windows: add connection defaults for RDR mode
[openafs.git] / src / WINNT / afsd / cm_conn.h
index 6220592..6587b66 100644 (file)
@@ -1,28 +1,42 @@
 /*
  * Copyright 2000, International Business Machines Corporation and others.
  * All Rights Reserved.
- * 
+ *
  * This software has been released under the terms of the IBM Public
  * License.  For details, see the LICENSE file in the top-level source
  * directory or online at http://www.openafs.org/dl/license10.html
  */
 
-#ifndef __CM_CONN_H_ENV__
-#define __CM_CONN_H_ENV__ 1
+#ifndef OPENAFS_WINNT_AFSD_CM_CONN_H
+#define OPENAFS_WINNT_AFSD_CM_CONN_H 1
 
 #define        CM_CONN_DEFAULTRDRTIMEOUT       45
+#ifndef CM_CONN_CONNDEADTIME
 #define CM_CONN_CONNDEADTIME            0
+#endif
+#ifndef CM_CONN_HARDDEADTIME
 #define CM_CONN_HARDDEADTIME             0
-#define CM_CONN_IDLEDEADTIME            30
+#endif
+#ifndef CM_CONN_IDLEDEADTIME
+#define CM_CONN_IDLEDEADTIME             0
+#endif
+#ifndef CM_CONN_NATPINGINTERVAL
+#define CM_CONN_NATPINGINTERVAL          0
+#endif
+
+#define CM_CONN_IFS_HARDDEADTIME       120
+#define CM_CONN_IFS_CONNDEADTIME        50
+#define CM_CONN_IFS_IDLEDEADTIME        50
 
 extern unsigned short ConnDeadtimeout;
 extern unsigned short HardDeadtimeout;
-extern DWORD          RDRtimeout; 
+extern DWORD          RDRtimeout;
+extern afs_uint32     rx_pmtu_discovery;
 
 typedef struct cm_conn {
        struct cm_conn *nextp;          /* locked by cm_connLock */
        struct cm_server *serverp;      /* locked by cm_serverLock */
-        struct rx_connection *callp;   /* locked by mx */
+        struct rx_connection *rxconnp; /* locked by mx */
         struct cm_user *userp;         /* locked by mx; a held reference */
         osi_mutex_t mx;                        /* mutex for some of these fields */
         afs_int32 refCount;            /* Interlocked */
@@ -33,27 +47,31 @@ typedef struct cm_conn {
 
 #define CM_CONN_FLAG_FORCE_NEW 1
 
-/* 
+/*
  * structure used for tracking RPC progress
- * and for passing path info from the smb layer 
+ * and for passing path info from the smb layer
  * to the cache manager functions.
  */
 typedef struct cm_req {
-       DWORD startTime;                /* Quit before RDR times us out */
-       int rpcError;                   /* RPC error code */
-       int volumeError;                /* volume error code */
-       int accessError;                /* access error code */
-        struct cm_server * tokenIdleErrorServp;  /* server that reported a token/idle error other than expired */
-        int tokenError;
-        int idleError;
-       afs_uint32 flags;
-        char * tidPathp;
-        char * relPathp;
+    DWORD startTime;           /* Quit before RDR times us out */
+    int rpcError;                      /* RPC error code */
+    int volumeError;           /* volume error code */
+    int accessError;           /* access error code */
+    struct cm_server * tokenIdleErrorServp;  /* server that reported a token/idle error other than expired */
+    int tokenError;
+    int idleError;
+    afs_uint32 flags;
+    clientchar_t * tidPathp;
+    clientchar_t * relPathp;
 } cm_req_t;
 
 /* flags in cm_req structure */
-#define        CM_REQ_NORETRY          0x1
-#define CM_REQ_NEW_CONN_FORCED  0x2
+#define        CM_REQ_NORETRY          0x01
+#define CM_REQ_NEW_CONN_FORCED  0x02
+#define CM_REQ_SOURCE_SMB       0x04
+#define CM_REQ_VOLUME_UPDATED   0x08
+/* 0x10 and 0x20 are reserved for the afs redirector */
+#define CM_REQ_OFFLINE_VOL_CHK  0x40
 
 /*
  * Vice2 error codes
@@ -72,7 +90,7 @@ typedef struct cm_req {
 
 #define VSALVAGE       101     /* Volume needs salvage */
 #define VNOVNODE       102     /* Bad vnode number quoted */
-#define VNOVOL         103     /* Volume not attached, doesn't exist, 
+#define VNOVOL         103     /* Volume not attached, doesn't exist,
                                   not created or not online */
 #define VVOLEXISTS     104     /* Volume already exists */
 #define VNOSERVICE     105     /* Volume is not in service (i.e. it's
@@ -98,7 +116,7 @@ typedef struct cm_req {
                                  * vos examine to find out the current
                                  * restrictions. */
 
-#define VRESTARTING    -100    /* server is restarting, otherwise similar to 
+#define VRESTARTING    -100    /* server is restarting, otherwise similar to
                                   VBUSY above.  This is negative so that old
                                   cache managers treat it as "server is down"*/
 
@@ -126,7 +144,7 @@ extern long cm_ConnByServer(struct cm_server *, struct cm_user *, cm_conn_t **);
 extern long cm_ConnFromFID(struct cm_fid *, struct cm_user *, struct cm_req *,
        cm_conn_t **);
 
-extern long cm_ConnFromVolume(struct cm_volume *volp, unsigned long volid, 
+extern long cm_ConnFromVolume(struct cm_volume *volp, unsigned long volid,
                               struct cm_user *userp, cm_req_t *reqp,
                               cm_conn_t **connpp);
 
@@ -140,4 +158,4 @@ extern void cm_ForceNewConnections(cm_server_t *serverp);
 
 extern long cm_ServerAvailable(struct cm_fid *fidp, struct cm_user *userp);
 
-#endif /*  __CM_CONN_H_ENV__ */
+#endif /*  OPENAFS_WINNT_AFSD_CM_CONN_H */