InfoNotModifiedReply response means update request was a noop in response to a client request (304).
(msg *ClientComMessage, ts time.Time)
| 1174 | // InfoNotModifiedReply response means update request was a noop |
| 1175 | // in response to a client request (304). |
| 1176 | func InfoNotModifiedReply(msg *ClientComMessage, ts time.Time) *ServerComMessage { |
| 1177 | return InfoNotModifiedExplicitTs(msg.Id, msg.Original, ts, msg.Timestamp) |
| 1178 | } |
| 1179 | |
| 1180 | // InfoNotModifiedExplicitTs response means update request was a noop |
| 1181 | // with explicit server and incoming request timestamps (304). |
no test coverage detected
searching dependent graphs…