Skip to content

Commit b0a4d70

Browse files
committed
Add SPDX headers to all directly EU-funded files
1 parent 7f67028 commit b0a4d70

12 files changed

+60
-0
lines changed

src/components/view/rtc/rtc-connection-card.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2022 Tim Perry <tim@httptoolkit.tech>
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
import * as _ from 'lodash';
27
import * as React from 'react';
38
import { computed } from 'mobx';

src/components/view/rtc/rtc-connection-details-pane.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2022 Tim Perry <tim@httptoolkit.tech>
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
import * as React from 'react';
27
import { action, computed, observable } from 'mobx';
38
import { inject, observer } from 'mobx-react';

src/components/view/rtc/rtc-connection-header.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2022 Tim Perry <tim@httptoolkit.tech>
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
import * as React from 'react';
27
import { observer } from 'mobx-react';
38

src/components/view/rtc/rtc-data-channel-card.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2022 Tim Perry <tim@httptoolkit.tech>
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
import * as React from 'react';
27
import { observer } from 'mobx-react';
38
import * as portals from 'react-reverse-portal';

src/components/view/rtc/rtc-data-channel-details-pane.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2022 Tim Perry <tim@httptoolkit.tech>
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
import * as _ from 'lodash';
27
import * as React from 'react';
38
import { action, observable } from 'mobx';

src/components/view/rtc/rtc-media-card.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2022 Tim Perry <tim@httptoolkit.tech>
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
import * as _ from 'lodash';
27
import * as React from 'react';
38
import { computed } from 'mobx';

src/components/view/rtc/rtc-media-details-pane.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2022 Tim Perry <tim@httptoolkit.tech>
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
import * as _ from 'lodash';
27
import * as React from 'react';
38
import { action, observable } from 'mobx';

src/components/view/rtc/sdp-card.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2022 Tim Perry <tim@httptoolkit.tech>
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
import * as _ from 'lodash';
27
import * as React from 'react';
38
import { observer } from 'mobx-react';

src/model/api/jsonrpc.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2022 Tim Perry <tim@httptoolkit.tech>
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
import {
27
ContentDescriptorObject,
38
JSONSchemaObject,

src/model/webrtc/rtc-connection.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* SPDX-FileCopyrightText: 2022 Tim Perry <tim@httptoolkit.tech>
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
5+
16
import { action, observable, computed } from "mobx";
27
import { SelectedRTCCandidate } from "mockrtc";
38
import {

0 commit comments

Comments
 (0)