Documentation: Match const correctness for function prototypes.
diff --git a/src/libiperf.3 b/src/libiperf.3
index 4b278e3..902c68e 100644
--- a/src/libiperf.3
+++ b/src/libiperf.3
@@ -24,9 +24,9 @@
Setting test parameters:
.nf
void iperf_set_test_role( struct iperf_test *pt, char role );
- void iperf_set_test_bind_address( struct iperf_test *t, char *bind_address );
- void iperf_set_test_bind_dev( struct iperf_test *t, char *bind_dev );
- void iperf_set_test_server_hostname( struct iperf_test *t, char *server_host );
+ void iperf_set_test_bind_address( struct iperf_test *t, const char *bind_address );
+ void iperf_set_test_bind_dev( struct iperf_test *t, const char *bind_dev );
+ void iperf_set_test_server_hostname( struct iperf_test *t, const char *server_host );
void iperf_set_test_server_port( struct iperf_test *t, int server_port );
void iperf_set_test_duration( struct iperf_test *t, int duration );
void iperf_set_test_blksize( struct iperf_test *t, int blksize );