Compare commits

...

3 Commits

Author SHA1 Message Date
lirazyehezkel
9b475a78f9 Started listening entry time (#1030) 2022-04-20 15:12:36 +03:00
RoyUP9
d76f24edb8 Fixed tapper socket error on failure (#1029) 2022-04-20 14:53:07 +03:00
lirazyehezkel
32ba653d12 TLS icon z index (#1028) 2022-04-20 14:34:16 +03:00
3 changed files with 2 additions and 2 deletions

View File

@@ -320,6 +320,7 @@ func dialSocketWithRetry(socketAddress string, retryAmount int, retryDelay time.
for i := 1; i < retryAmount; i++ {
socketConnection, _, err := dialer.Dial(socketAddress, nil)
if err != nil {
lastErr = err
if i < retryAmount {
logger.Log.Infof("socket connection to %s failed: %v, retrying %d out of %d in %d seconds...", socketAddress, err, i, retryAmount, retryDelay/time.Second)
time.Sleep(retryDelay)

View File

@@ -212,7 +212,7 @@ export const EntriesList: React.FC<EntriesListProps> = ({
<div>Displaying <b id="entries-length">{entries?.length > MAX_ENTRIES ? MAX_ENTRIES : entries?.length}</b> results out of <b
id="total-entries">{queriedTotal}</b> total
</div>
{startTime !== 0 && <div>Started listening at <span style={{
{startTime !== 0 && <div>First traffic entry time <span style={{
marginRight: 5,
fontWeight: 600,
fontSize: 13

View File

@@ -67,7 +67,6 @@
.capture img
height: 14px
z-index: 1000
margin-top: 12px
margin-left: -2px