Commit Graph

35 Commits

Author SHA1 Message Date
Panos Astithas
121dd7d1d3 Add a devtools tag to all devtools tests (bug 1149907). r=pbrosset 2015-04-01 14:09:33 +03:00
Ehsan Akhgari
33bb32f549 Bug 1145631 - Part 1: Replace MOZ_OVERRIDE and MOZ_FINAL with override and final in the tree; r=froydnj
This patch was automatically generated using the following script:

function convert() {
echo "Converting $1 to $2..."
find . \
       ! -wholename "*/.git*" \
       ! -wholename "obj-ff-dbg*" \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.c" \
         -o -iname "*.cc" \
         -o -iname "*.idl" \
         -o -iname "*.ipdl" \
         -o -iname "*.ipdlh" \
         -o -iname "*.mm" \) | \
    xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}

convert MOZ_OVERRIDE override
convert MOZ_FINAL final
2015-03-21 12:28:04 -04:00
J. Ryan Stinnett
fbdc2f4a4b Bug 1032128 - Persist always allowed cert clients. r=past 2015-03-12 17:52:38 -05:00
J. Ryan Stinnett
49385deef4 Bug 1127004 - Use promises and session in b2g allowConnection. r=past 2015-02-05 15:26:13 -06:00
J. Ryan Stinnett
75a1836a00 Bug 1103120 - Part 21: Client: Close streams when connection refused. r=past 2015-01-26 12:47:14 -06:00
J. Ryan Stinnett
21916907fd Bug 1103120 - Part 19: OOB cert auth tests. r=past 2015-01-26 12:47:14 -06:00
J. Ryan Stinnett
9f814d7f85 Bug 1103120 - Part 18: Client: Validate random value, debugging begins. r=past 2015-01-26 12:47:14 -06:00
J. Ryan Stinnett
e131c365c4 Bug 1103120 - Part 17: Server: Default receive OOB dialog. r=past 2015-01-26 12:47:14 -06:00
J. Ryan Stinnett
56ff654c84 Bug 1103120 - Part 16: Server: Receive OOB data from client. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
bbc7ff5766 Bug 1103120 - Part 15: Client: Compare server cert to advertisement. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
2c47d774ee Bug 1103120 - Part 14: Client: Send OOB data to server. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
e2b7e2486e Bug 1103120 - Part 13: Client: Set cert when connecting. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
c77511dcde Bug 1103120 - Part 12: Client: Receive pending auth message from server. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
3d2a406872 Bug 1103120 - Part 10: Server: Send pending auth message to client. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
3655cd65ea Bug 1103120 - Part 9: Server: Require client cert, add cert to session. r=past
This exposes the server and client certs as part of the session info available
to authenticators and prompts.
2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
166f218b60 Bug 1103120 - Part 8: Server: Use promises and results in allowConnection. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
f6e31ab77a Bug 1103120 - Part 7: Server: Provide session to default prompt. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
29337858db Bug 1103120 - Part 6: Server: Move allowConnection to authenticator. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
bb9766c699 Bug 1103120 - Part 5: Server: Create connection object on accept. r=past
Extract the socket accept logic into a new object, in preparation for more
complex steps to handle authentication.  As a bonus, the new workflow ensures
that the TLS handshake is validated before handing the connection of to the
DebuggerServer.
2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
616b80b165 Bug 1103120 - Part 4: Server: Move default prompt to new file. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
3dcd66c8fb Bug 1103120 - Part 3: Server: Advertise cert for authentication. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
b91cb9ca87 Bug 1103120 - Part 2: Add authenticators for each auth mode. r=past 2015-01-26 12:47:13 -06:00
J. Ryan Stinnett
14ee78a8c0 Bug 1103120 - Part 1: Add WiFi auth design doc. r=past 2015-01-26 12:47:12 -06:00
Ehsan Akhgari
ff4292a4f7 Bug 1119258 - Mark virtual overridden functions as MOZ_OVERRIDE in toolkit; r=Mossop 2015-01-08 23:12:19 -05:00
J. Ryan Stinnett
41b46b6f45 Bug 1059001 - Part 4: Pass encryption through via discovery. r=past 2014-12-10 20:55:52 -06:00
J. Ryan Stinnett
6996a84536 Bug 1059001 - Part 3: Add encryption socket option. r=past 2014-12-10 20:55:52 -06:00
J. Ryan Stinnett
ed7e164eb0 Bug 1059001 - Part 2: Move discovery into socket listener. r=past
Don't make the socket listener set up discover manually.  Also, future additions
(authentication) for WiFi debugging will add extra information to the discovery
packet.
2014-12-10 20:55:51 -06:00
J. Ryan Stinnett
a7b43abcbe Bug 1059001 - Part 1a: Separate create and open listener. r=past
Break up the steps of creating a socket listener and opening it.  This allows
more socket options beyond port / path to be added and controlled more
naturally, instead of jamming them into the open method.
2014-12-10 20:55:51 -06:00
J. Ryan Stinnett
1d4e44167f Bug 1058997 - Part 4: Only one DebuggerServer per loader. r=past
It was never necessary to pass a server reference to the socket listener, since
a given DevTools loader only ever contains a single server instance.
2014-12-01 22:55:56 -08:00
J. Ryan Stinnett
2fc46b3be5 Bug 1058997 - Part 3a: Move allowConnection to socket listener. r=past
In the future with multiple types of socket listeners (bare TCP vs. TLS), each
will need its own logic for allowing connection.  This is moved to the listener
level, rather than living at the level of the entire server.
2014-12-01 22:55:56 -08:00
J. Ryan Stinnett
7a8540336b Bug 1058997 - Part 2: Debugger socket style cleanup. r=past 2014-12-01 22:55:56 -08:00
J. Ryan Stinnett
ae6738b263 Bug 1058997 - Part 1: Extract socket connect and listen. r=past
Relocate the debugger client's connect and server's listen functionality in a
separate file.  This isolates the security-sensitive socket handling pieces, and
also enables easier extension to make room for TLS sockets.
2014-12-01 22:55:56 -08:00
Andrew Halberstadt
2da4ee197d Bug 1066735 - Remove root b2g and android specific xpcshell manifests, r=chmanchester 2014-10-07 18:18:28 -04:00
Ehsan Akhgari
6a15123539 Bug 1060986 - Fix one bad implicit constructors in devtools; r=jryans 2014-09-02 09:49:03 -04:00
J. Ryan Stinnett
ba128d5304 Bug 1038991 - DevTools security cert generator. r=dkeeler, r=past, r=gps
--HG--
extra : rebase_source : 91340b1e422f1d12333073f000b4c8c96dde8134
2014-08-05 10:23:00 -04:00