search for: ssh_bind_address_any

Displaying 1 result from an estimated 1 matches for "ssh_bind_address_any".

2012 Feb 12
0
PATCH: multiple BindAddress
...12 @@ typedef struct { } Forward; /* Data structure for representing option data. */ -#define 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/kn...