Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion integration/fsc/pingpong/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,11 @@ func (p *Initiator) Call(context view.Context) (interface{}, error) {
```

Let us go through the main steps:
- **Retrieve responder identity**: The initiator is supposed to send a ping to the responder.
- **Retrieve responder identity**: The initiator should send a ping to the responder.
The first step is therefore to retrieve the responder's identity.
This can be done by using the identity service.
If you are asking yourself: Where is defined the responder's identity?
It is in the initiator's configuration file. More information in this [Section](#FSC node's Configuration File).
- **Open a session to the responder**: With the responder's identity, the initiator
can open a session.
The context allows the initiator to do that.
Expand Down