commit | fd4859a7fba462b9762ac948702a1e768c66848f | [log] [tgz] |
---|---|---|
author | Ed Tanous <ed.tanous@intel.com> | Wed Oct 23 13:31:38 2019 -0700 |
committer | James Feist <james.feist@linux.intel.com> | Tue Nov 19 17:14:04 2019 +0000 |
tree | ca0a68df56dc6494aeaad2946f47c12170f76b7c | |
parent | 4bb3dc346522b5f1e3bf6241c64238837caff5d2 [diff] |
Remove unused wildcard captures Considering that wild card captures are now known to be difficult to maintain, remove a couple instances of them from app. They are no longer used as a capture, so can be safely removed with no effect. It's likely the compiler is doing this already. Tested: No functional change. Code compiles. Signed-off-by: Ed Tanous <ed.tanous@intel.com> Change-Id: I252344a4608f7e107bcb273d725b5a484eb7a17d
This component attempts to be a "do everything" embedded webserver for openbmc.
At this time, the webserver implements a few interfaces:
BMCWeb is configured by setting -D
flags that correspond to options in bmcweb/CMakeLists.txt
and then compiling. For example, cmake -DBMCWEB_ENABLE_KVM=NO ...
followed by make
. The option names become C++ preprocessor symbols that control which code is compiled into the program.
When BMCWeb starts running, it reads persistent configuration data (such as UUID and session data) from a local file. If this is not usable, it generates a new configuration.
When BMCWeb SSL support is enabled and a usable certificate is not found, it will generate a self-sign a certificate before launching the server. The keys are generated by the prime256v1
algorithm. The certificate
C=US, O=OpenBMC, CN=testhost
,SHA-256
algorithm.