Reference 1
Client two subinterfaces:
Server two subinterfaces:
==> interface of Put#
is used to grab something from outside to inside; interface of Get#
is used to send something from inside out. (LLM: weird. This is from third-person view: this interface is used for others to xxx
. As first-person view would be totally opposite: this interface is used for me to xxx
).
request
(type Get) of the client will connect to request
(type Put) of the Server.
response
(type Put) of the client will connect to response
(type Get) of the Server.
If you could revise
the fundmental principles of
computer system design
to improve security...
... what would you change?