forked from wolfSSL/wolfssh
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Updating configure.ac to remove some redunant things. 2. Adding a user_settings.h file that is produced by config.status which will work like wolfSSL's options.h and user_settings.h.
- Loading branch information
1 parent
2e823c1
commit 51dce14
Showing
2 changed files
with
82 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#ifndef _WOLFSSH_USER_SETTINGS_H_ | ||
#define _WOLFSSH_USER_SETTINGS_H_ | ||
|
||
/* Enable SSH-AGENT */ | ||
#undef WOLFSSH_AGENT | ||
|
||
/* Enable certificate support */ | ||
#undef WOLFSSH_CERTS | ||
|
||
/* Enable port forwarding */ | ||
#undef WOLFSSH_FWD | ||
|
||
/* Enable the keygen functions */ | ||
#undef WOLFSSH_KEYGEN | ||
|
||
/* Enable pseudoterminal */ | ||
#undef WOLFSSH_PTERM | ||
|
||
/* Enable SCP */ | ||
#undef WOLFSSH_SCP | ||
|
||
/* Enable SFTP */ | ||
#undef WOLFSSH_SFTP | ||
|
||
/* Enable shell support */ | ||
#undef WOLFSSH_SHELL | ||
|
||
/* Build for small stack */ | ||
#undef WOLFSSH_SMALLSTACK | ||
|
||
/* Enable sshd server */ | ||
#undef WOLFSSH_SSHD | ||
|
||
#endif /* _WOLFSSH_USER_SETTINGS_H_ */ |