aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css/header.less
Commit message (Expand)AuthorAgeFilesLines
* [web] add connection indicatorMaximilian Hils2017-04-291-3/+27
* Adjust pop-up docs positionFrank Ahn2017-03-151-0/+8
* [web] Add mouse support for FilterInput popover.Matthew Shao2017-03-021-0/+7
* [web] various fixesMaximilian Hils2016-12-121-0/+1
* [web] style flow menuMaximilian Hils2016-12-111-23/+49
* [web] style start menuMaximilian Hils2016-12-111-1/+15
* [web] style options menuMaximilian Hils2016-12-111-8/+50
* web: :hatching_chick:Maximilian Hils2016-06-021-17/+0
* start of developing server side for options (#1155)Clemens Brunner2016-05-291-2/+16
* added UI for options menu (#1130)Clemens Brunner2016-05-141-0/+4
* move mitmproxy/web to rootMaximilian Hils2016-02-181-0/+33
* move mitmproxyMaximilian Hils2016-02-151-33/+0
* web: global key handlingMaximilian Hils2015-03-291-1/+1
* web: minor ux improvementsMaximilian Hils2015-03-271-0/+2
* tweak cssMaximilian Hils2015-03-221-16/+16
* Make header more compactAldo Cortesi2015-01-011-7/+1
* Fix fonts, stylesheets, add much more flexible bootstrap over-rides.Aldo Cortesi2014-12-301-2/+2
* web: integrate filter docsMaximilian Hils2014-12-261-13/+29
* web: filter/highlight ui, many fixesMaximilian Hils2014-12-131-0/+6
* add splitterMaximilian Hils2014-09-181-30/+0
* web: detailpane implMaximilian Hils2014-09-181-11/+5
* web: eventlog uiMaximilian Hils2014-09-151-1/+1
* client-side structureMaximilian Hils2014-09-151-9/+0
* Client-side cleanupAldo Cortesi2014-09-151-54/+52
* web: start guiMaximilian Hils2014-09-131-0/+62
IM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * * Author: Ryan Wilson <hap9@epoch.ncsc.mil> */ #ifndef __XEN_PCI_COMMON_H__ #define __XEN_PCI_COMMON_H__ /* Be sure to bump this number if you change this file */ #define XEN_PCI_MAGIC "7" /* xen_pci_sharedinfo flags */ #define _XEN_PCIF_active (0) #define XEN_PCIF_active (1<<_XEN_PCI_active) /* xen_pci_op commands */ #define XEN_PCI_OP_conf_read (0) #define XEN_PCI_OP_conf_write (1) /* xen_pci_op error numbers */ #define XEN_PCI_ERR_success (0) #define XEN_PCI_ERR_dev_not_found (-1) #define XEN_PCI_ERR_invalid_offset (-2) #define XEN_PCI_ERR_access_denied (-3) #define XEN_PCI_ERR_not_implemented (-4) /* XEN_PCI_ERR_op_failed - backend failed to complete the operation */ #define XEN_PCI_ERR_op_failed (-5) struct xen_pci_op { /* IN: what action to perform: XEN_PCI_OP_* */ uint32_t cmd; /* OUT: will contain an error number (if any) from errno.h */ int32_t err; /* IN: which device to touch */ uint32_t domain; /* PCI Domain/Segment */ uint32_t bus; uint32_t devfn; /* IN: which configuration registers to touch */ int32_t offset; int32_t size; /* IN/OUT: Contains the result after a READ or the value to WRITE */ uint32_t value; }; struct xen_pci_sharedinfo { /* flags - XEN_PCIF_* */ uint32_t flags; struct xen_pci_op op; }; #endif /* __XEN_PCI_COMMON_H__ */ /* * Local variables: * mode: C * c-set-style: "BSD" * c-basic-offset: 4 * tab-width: 4 * indent-tabs-mode: nil * End: */