summaryrefslogtreecommitdiff
path: root/ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.h')
-rw-r--r--ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.h b/ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.h
index db1ad45bf4c..5284aaa8957 100644
--- a/ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.h
+++ b/ACE/examples/IPC_SAP/SSL_SAP/SSL-client-simple.h
@@ -22,26 +22,26 @@ public:
int parse_args (int argc, ACE_TCHAR *argv[]);
// Parse the command-line arguments.
- const ACE_Time_Value &sleep_time (void) const;
+ const ACE_Time_Value &sleep_time () const;
// Return the amount of time to sleep in order to implement the
// proper transmission rates.
- u_short port (void) const;
+ u_short port () const;
// Port of the server.
- const ACE_TCHAR *host (void) const;
+ const ACE_TCHAR *host () const;
// Host of the server.
- const char *quit_string (void) const;
+ const char *quit_string () const;
// String that shuts down the client/server.
ssize_t read (void *buf, size_t len, size_t &iterations);
// Read from the appropriate location.
- size_t message_len (void) const;
+ size_t message_len () const;
// Returns the length of the message to send.
- const void *message_buf (void) const;
+ const void *message_buf () const;
// Returns a pointer to the message.
void run (void);