Displaying 1 result from an estimated 1 matches for "ssh_bind_address_anylen".
2012 Feb 12
0
PATCH: multiple BindAddress
...fine MAX_SEND_ENV 256
-#define SSH_MAX_HOSTS_FILES 256
+#define MAX_SEND_ENV 256
+#define SSH_MAX_HOSTS_FILES 256
+#define SSH_MAX_BIND_ADDRESSES 8 /* 16 addresses, should be enough */
+
+#define SSH_BIND_ADDRESS_ANY "any" /* any address mark, used in
configuration file */
+#define SSH_BIND_ADDRESS_ANYlen strlen(SSH_BIND_ADDRESS_ANY)
typedef struct {
int forward_agent; /* Forward authentication agent. */
@@ -89,7 +93,10 @@ typedef struct {
u_int num_user_hostfiles; /* Path for $HOME/.ssh/known_hosts */
char *user_hostfiles[SSH_MAX_HOSTS_FILES];
char *preferred_authentications;
- ch...