gistfile1.txt
· 897 B · Text
Bruto
108: local last_seen
109: last_seen=$(peers::format_last_seen "$name" "$public_key" \
127: ui::row "Last seen" "$last_seen"
297: local last_seen="-"
301: last_seen="$(fmt::datetime_short "$attempt_ts") (dropped)"
306: last_seen="${ts_display} (handshake)"
308: last_seen="$ts_display"
315: "$status" "$last_seen" \
335: while IFS='|' read -r name ip type rule group status last_seen is_blocked is_restricted; do
337: ui::peer::list_row_compact \
340: "$status" "$last_seen" "$is_blocked" "$is_restricted"
357: while IFS='|' read -r name ip type rule group status last_seen is_blocked is_restricted; do
364: (( ${#last_seen} > w_last )) && w_last=${#last_seen}
380: while IFS='|' read -r name ip type rule group status last_seen is_blocked is_restricted; do
395: "$row_color" "$name" "$ip" "$type" "$rule" "$group" "$clean_status" "$last_seen"
| 1 | 108: local last_seen |
| 2 | 109: last_seen=$(peers::format_last_seen "$name" "$public_key" \ |
| 3 | 127: ui::row "Last seen" "$last_seen" |
| 4 | 297: local last_seen="-" |
| 5 | 301: last_seen="$(fmt::datetime_short "$attempt_ts") (dropped)" |
| 6 | 306: last_seen="${ts_display} (handshake)" |
| 7 | 308: last_seen="$ts_display" |
| 8 | 315: "$status" "$last_seen" \ |
| 9 | 335: while IFS='|' read -r name ip type rule group status last_seen is_blocked is_restricted; do |
| 10 | 337: ui::peer::list_row_compact \ |
| 11 | 340: "$status" "$last_seen" "$is_blocked" "$is_restricted" |
| 12 | 357: while IFS='|' read -r name ip type rule group status last_seen is_blocked is_restricted; do |
| 13 | 364: (( ${#last_seen} > w_last )) && w_last=${#last_seen} |
| 14 | 380: while IFS='|' read -r name ip type rule group status last_seen is_blocked is_restricted; do |
| 15 | 395: "$row_color" "$name" "$ip" "$type" "$rule" "$group" "$clean_status" "$last_seen" |
| 16 |