aboutsummaryrefslogtreecommitdiff
path: root/include/libssh
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2011-09-17 18:31:08 +0200
committerAndreas Schneider <asn@cryptomilk.org>2011-09-18 21:37:17 +0200
commit33754c391f34e3aa80ff6eeccf93db3d5e446496 (patch)
treed0ed5a170edc89e62c29ad9637785fb86756700e /include/libssh
parentd7fa15df83619dd300580a444ab330a2a8592d4a (diff)
downloadlibssh-33754c391f34e3aa80ff6eeccf93db3d5e446496.tar.gz
libssh-33754c391f34e3aa80ff6eeccf93db3d5e446496.tar.xz
libssh-33754c391f34e3aa80ff6eeccf93db3d5e446496.zip
priv: Start to remove enter_function.
Diffstat (limited to 'include/libssh')
-rw-r--r--include/libssh/priv.h97
1 files changed, 38 insertions, 59 deletions
diff --git a/include/libssh/priv.h b/include/libssh/priv.h
index f399dc29..e53802f5 100644
--- a/include/libssh/priv.h
+++ b/include/libssh/priv.h
@@ -120,38 +120,39 @@ int gettimeofday(struct timeval *__p, void *__t);
#endif
#endif
-#ifdef __cplusplus
-extern "C" {
-#endif
+#define enter_function() (void)session
+#define leave_function() (void)session
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif
-/* error handling structure */
-struct error_struct {
- int error_code;
- char error_buffer[ERROR_BUFFERLEN];
-};
-
+/* forward declarations */
struct ssh_common_struct;
struct ssh_kex_struct;
-/* server data */
+int ssh_get_key_params(ssh_session session, ssh_key *privkey);
+/* LOGGING */
+#define SSH_LOG(session, priority, ...) \
+ ssh_log_common(&session->common, priority, __FUNCTION__, __VA_ARGS__)
+void ssh_log_common(struct ssh_common_struct *common,
+ int verbosity,
+ const char *function,
+ const char *format, ...) PRINTF_ATTRIBUTE(4, 5);
+void ssh_log_function(int verbosity,
+ const char *function,
+ const char *buffer);
-SSH_PACKET_CALLBACK(ssh_packet_disconnect_callback);
-SSH_PACKET_CALLBACK(ssh_packet_ignore_callback);
-int ssh_get_key_params(ssh_session session, ssh_key *privkey);
-/* client.c */
+/* ERROR HANDLING */
-int ssh_send_banner(ssh_session session, int is_server);
-SSH_PACKET_CALLBACK(ssh_packet_dh_reply);
-SSH_PACKET_CALLBACK(ssh_packet_newkeys);
-SSH_PACKET_CALLBACK(ssh_packet_service_accept);
+/* error handling structure */
+struct error_struct {
+ int error_code;
+ char error_buffer[ERROR_BUFFERLEN];
+};
-/* errors.c */
#define ssh_set_error(error, code, ...) \
_ssh_set_error(error, code, __FUNCTION__, __VA_ARGS__)
void _ssh_set_error(void *error,
@@ -167,6 +168,23 @@ void _ssh_set_error_oom(void *error, const char *function);
_ssh_set_error_invalid(error, __FUNCTION__)
void _ssh_set_error_invalid(void *error, const char *function);
+
+
+
+
+/* server data */
+
+
+SSH_PACKET_CALLBACK(ssh_packet_disconnect_callback);
+SSH_PACKET_CALLBACK(ssh_packet_ignore_callback);
+
+/* client.c */
+
+int ssh_send_banner(ssh_session session, int is_server);
+SSH_PACKET_CALLBACK(ssh_packet_dh_reply);
+SSH_PACKET_CALLBACK(ssh_packet_newkeys);
+SSH_PACKET_CALLBACK(ssh_packet_service_accept);
+
/* in crypt.c */
uint32_t packet_decrypt_len(ssh_session session,char *crypted);
int packet_decrypt(ssh_session session, void *packet,unsigned int len);
@@ -208,44 +226,9 @@ int match_hostname(const char *host, const char *pattern, unsigned int len);
int message_handle(ssh_session session, void *user, uint8_t type, ssh_buffer packet);
-#define _enter_function(sess) \
- do {\
- if((sess)->common.log_verbosity >= SSH_LOG_FUNCTIONS){ \
- ssh_log((sess),SSH_LOG_FUNCTIONS,"entering function %s line %d in " __FILE__ , __FUNCTION__,__LINE__);\
- (sess)->common.log_indent++; \
- } \
- } while(0)
-
-#define _leave_function(sess) \
- do { \
- if((sess)->common.log_verbosity >= SSH_LOG_FUNCTIONS){ \
- (sess)->common.log_indent--; \
- ssh_log((sess),SSH_LOG_FUNCTIONS,"leaving function %s line %d in " __FILE__ , __FUNCTION__,__LINE__);\
- }\
- } while(0)
-
-#ifdef DEBUG_CALLTRACE
-#define enter_function() _enter_function(session)
-#define leave_function() _leave_function(session)
-#else
-#define enter_function() (void)session
-#define leave_function() (void)session
-#endif
-
-
/* server.c */
SSH_PACKET_CALLBACK(ssh_packet_kexdh_init);
-/* LOGGING */
-#define SSH_LOG(session, priority, ...) \
- ssh_log_common(&session->common, priority, __FUNCTION__, __VA_ARGS__)
-void ssh_log_common(struct ssh_common_struct *common,
- int verbosity,
- const char *function,
- const char *format, ...) PRINTF_ATTRIBUTE(4, 5);
-void ssh_log_function(int verbosity,
- const char *function,
- const char *buffer);
/** Free memory space */
@@ -288,9 +271,5 @@ int my_gcry_dec2bn(bignum *bn, const char *data);
char *my_gcry_bn2dec(bignum bn);
#endif /* !HAVE_LIBGCRYPT */
-#ifdef __cplusplus
-}
-#endif
-
#endif /* _LIBSSH_PRIV_H */
-/* vim: set ts=2 sw=2 et cindent: */
+/* vim: set ts=4 sw=4 et cindent: */