aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/tsi/transport_security.h
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-05-14 14:17:53 -0700
committerGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2015-05-14 14:17:53 -0700
commit6202f7da90a24bc992112061a128ca25faa9ecb0 (patch)
treefb3be8e051df0493ca4dc6f4c823edaada7884d0 /src/core/tsi/transport_security.h
parent96ea30362c24a8b722ef5020684e648521387f10 (diff)
parent77e8c1cfb99bc93469e06e75897bbece7d40b26c (diff)
Merge pull request #1580 from jboeuf/tsi_properties_cleanup
Clean up tsi properties.
Diffstat (limited to 'src/core/tsi/transport_security.h')
-rw-r--r--src/core/tsi/transport_security.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/tsi/transport_security.h b/src/core/tsi/transport_security.h
index 59e5dcff9a..4cd0ec2cfb 100644
--- a/src/core/tsi/transport_security.h
+++ b/src/core/tsi/transport_security.h
@@ -92,12 +92,6 @@ struct tsi_handshaker {
tsi_result tsi_construct_peer(size_t property_count, tsi_peer* peer);
tsi_peer_property tsi_init_peer_property(void);
void tsi_peer_property_destruct(tsi_peer_property* property);
-tsi_result tsi_construct_signed_integer_peer_property(
- const char* name, int64_t value, tsi_peer_property* property);
-tsi_result tsi_construct_unsigned_integer_peer_property(
- const char* name, uint64_t value, tsi_peer_property* property);
-tsi_result tsi_construct_real_peer_property(const char* name, double value,
- tsi_peer_property* property);
tsi_result tsi_construct_string_peer_property(const char* name,
const char* value,
size_t value_length,
@@ -106,9 +100,6 @@ tsi_result tsi_construct_allocated_string_peer_property(
const char* name, size_t value_length, tsi_peer_property* property);
tsi_result tsi_construct_string_peer_property_from_cstring(
const char* name, const char* value, tsi_peer_property* property);
-tsi_result tsi_construct_list_peer_property(const char* name,
- size_t child_count,
- tsi_peer_property* property);
/* Utils. */
char* tsi_strdup(const char* src); /* Sadly, no strdup in C89. */