Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/lib/types/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export type Filter = Record<Protocol, boolean>;
export const defaultFilter: Filter = {
dns: true,
http: true,
https: true,
smtp: true,
};

Expand Down
2 changes: 1 addition & 1 deletion src/lib/types/protocol.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const protocols = ['dns', 'http', 'smtp'] as const;
export const protocols = ['dns', 'http', 'https', 'smtp'] as const;
export type Protocol = (typeof protocols)[number];

export const Protocol = {
Expand Down