refactor: rename connection_t struct fields.

connection_t.timestamp_lastwritten renamed to
connection_t.timestamp_last_write_allowed

connection_t.timestamp_lastread renamed to
connection_t.timestamp_last_read_allowed

Closes ticket 24714.
This commit is contained in:
Caio Valente
2018-02-01 03:12:38 +01:00
parent 2294e330bd
commit 7884ce76e1
10 changed files with 37 additions and 29 deletions
+6
View File
@@ -0,0 +1,6 @@
o Code simplification and refactoring:
- Rename two fields of connection_t struct.
timestamp_lastwritten is renamed to timestamp_last_write_allowed and
timestamp_lastread is renamed to timestamp_last_read_allowed.
Closes ticket 24714, patch by "valentecaio".