initial data like that makes no sense

This commit is contained in:
Nadja Reitzenstein 2022-03-12 14:59:38 +01:00
parent c20703dd5b
commit c9283ebd69

View File

@ -34,11 +34,9 @@ interface Bootstrap
mechanisms @2 () -> ( mechs: List(Text) ); mechanisms @2 () -> ( mechs: List(Text) );
# Get a list of Mechanisms this server allows in this context. # Get a list of Mechanisms this server allows in this context.
createSession @3 ( mechanism :Text, initialData :Data ) -> ( authentication :Authentication); createSession @3 ( mechanism :Text ) -> ( authentication :Authentication );
# Create a new session with the server that you wish to authenticate using `mechanism`. # Create a new session with the server that you wish to authenticate using `mechanism`.
# If the mechanism is a client-first mechanism you MAY set `initialData` to contain the data you # Using pipelining makes this one-roundtrip capable without explicit initial data support.
# want to send. If the mechanism is server-first or you do not wish to send initial data, make
# initialData a NULL-pointer.
} }
struct Session { struct Session {