File: README.txt

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (54 lines) | stat: -rw-r--r-- 2,243 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Overview

'safebrowsing.proto' is modified from [1] with the following changes:

- Added "package mozilla.safebrowsing;"
- Added more threatHit information

##################################
  // Client-reported identification.
  optional ClientInfo client_info = 5;

  // Details about the user that encountered the threat.
  message UserInfo {
    // The UN M.49 region code associated with the user's location.
    optional string region_code = 1;

    // Unique ID stable over a week or two
    optional bytes user_id = 2;
  }

  // Details about the user that encountered the threat.
  optional UserInfo user_info = 6;
####################################

to avoid naming pollution. We use this source file along with protobuf compiler (protoc) to generate safebrowsing.pb.h/cc for safebrowsing v4 update and hash completion.

'safebrowsing_v5.proto' is based on [5] with below adjustments.

- Change the package namespace to 'mozilla.safebrowsing.v5'
- Remove unnecessary imports and annotations.
- Remove unnecessary options.
- Replace the google.protobuf.Duration with a local Duration message with the
  same format.
- Remove the service section that is not used in Gecko.
- Add option to enable optimization for the lite runtime.

The safebrowsing_v5.patch captures all changes to the safebrowsing_v5.proto.

# Update

If you want to update to the latest upstream version,

1. Checkout the latest proto files[2][4].
2. Use protoc to generate safebrowsing.pb.h and safebrowsing.pb.cc. For example,

$ protoc -I=. --cpp_out="../protobuf/" safebrowsing.proto

(Note that we should regenerate the header and source files when Gecko's protobuf upgrades, it's currently handled by the regeneration script[4].)

[1] https://chromium.googlesource.com/chromium/src.git/+/9c4485f1ce7cac7ae82f7a4ae36ccc663afe806c/components/safe_browsing_db/safebrowsing.proto
[2] https://chromium.googlesource.com/chromium/src.git/+/master/components/safe_browsing_db/safebrowsing.proto
[3] https://github.com/google/protobuf/releases/tag/v2.6.1
[4] https://searchfox.org/mozilla-central/source/toolkit/components/protobuf/regenerate_cpp_files.sh
[5] https://github.com/googleapis/googleapis/blob/master/google/security/safebrowsing/v5/safebrowsing.proto