summaryrefslogtreecommitdiff
path: root/src/leap/common/ipc
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/common/ipc')
-rw-r--r--src/leap/common/ipc/Makefile30
-rw-r--r--src/leap/common/ipc/notification.proto23
-rw-r--r--src/leap/common/ipc/notification_pb2.py135
3 files changed, 0 insertions, 188 deletions
diff --git a/src/leap/common/ipc/Makefile b/src/leap/common/ipc/Makefile
deleted file mode 100644
index 7c01fc6..0000000
--- a/src/leap/common/ipc/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# -*- coding: utf-8 -*-
-# Makefile
-# Copyright (C) 2013 LEAP
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-# This file is used to generate protobuf python files that are used for IPC:
-#
-# https://developers.google.com/protocol-buffers/docs/pythontutorial
-
-PROTOC = protoc
-
-all: notification_pb2.py
-
-%_pb2.py: %.proto
- $(PROTOC) --python_out=./ $<
-
-clean:
- rm -f *_pb2.py
diff --git a/src/leap/common/ipc/notification.proto b/src/leap/common/ipc/notification.proto
deleted file mode 100644
index 4ae0406..0000000
--- a/src/leap/common/ipc/notification.proto
+++ /dev/null
@@ -1,23 +0,0 @@
-// https://developers.google.com/protocol-buffers/docs/pythontutorial
-// https://developers.google.com/protocol-buffers/docs/reference/python-generated
-
-package leap.common;
-
-message Notification {
-
- enum Component {
- client = 0;
- soledad = 1;
- eip = 2;
- smtp_relay = 3;
- mx = 4;
- }
-
- required int32 id = 1;
- required Component component = 2;
- required string content = 3;
- required string mac_method = 4;
- required bytes mac = 5;
- optional string enc_method = 6;
- optional bool error_occurred = 7;
-}
diff --git a/src/leap/common/ipc/notification_pb2.py b/src/leap/common/ipc/notification_pb2.py
deleted file mode 100644
index a1c285f..0000000
--- a/src/leap/common/ipc/notification_pb2.py
+++ /dev/null
@@ -1,135 +0,0 @@
-# Generated by the protocol buffer compiler. DO NOT EDIT!
-# source: notification.proto
-
-from google.protobuf import descriptor as _descriptor
-from google.protobuf import message as _message
-from google.protobuf import reflection as _reflection
-from google.protobuf import descriptor_pb2
-# @@protoc_insertion_point(imports)
-
-
-
-
-DESCRIPTOR = _descriptor.FileDescriptor(
- name='notification.proto',
- package='leap.common',
- serialized_pb='\n\x12notification.proto\x12\x0bleap.common\"\xf7\x01\n\x0cNotification\x12\n\n\x02id\x18\x01 \x02(\x05\x12\x36\n\tcomponent\x18\x02 \x02(\x0e\x32#.leap.common.Notification.Component\x12\x0f\n\x07\x63ontent\x18\x03 \x02(\t\x12\x12\n\nmac_method\x18\x04 \x02(\t\x12\x0b\n\x03mac\x18\x05 \x02(\x0c\x12\x12\n\nenc_method\x18\x06 \x01(\t\x12\x16\n\x0e\x65rror_occurred\x18\x07 \x01(\x08\"E\n\tComponent\x12\n\n\x06\x63lient\x10\x00\x12\x0b\n\x07soledad\x10\x01\x12\x07\n\x03\x65ip\x10\x02\x12\x0e\n\nsmtp_relay\x10\x03\x12\x06\n\x02mx\x10\x04')
-
-
-
-_NOTIFICATION_COMPONENT = _descriptor.EnumDescriptor(
- name='Component',
- full_name='leap.common.Notification.Component',
- filename=None,
- file=DESCRIPTOR,
- values=[
- _descriptor.EnumValueDescriptor(
- name='client', index=0, number=0,
- options=None,
- type=None),
- _descriptor.EnumValueDescriptor(
- name='soledad', index=1, number=1,
- options=None,
- type=None),
- _descriptor.EnumValueDescriptor(
- name='eip', index=2, number=2,
- options=None,
- type=None),
- _descriptor.EnumValueDescriptor(
- name='smtp_relay', index=3, number=3,
- options=None,
- type=None),
- _descriptor.EnumValueDescriptor(
- name='mx', index=4, number=4,
- options=None,
- type=None),
- ],
- containing_type=None,
- options=None,
- serialized_start=214,
- serialized_end=283,
-)
-
-
-_NOTIFICATION = _descriptor.Descriptor(
- name='Notification',
- full_name='leap.common.Notification',
- filename=None,
- file=DESCRIPTOR,
- containing_type=None,
- fields=[
- _descriptor.FieldDescriptor(
- name='id', full_name='leap.common.Notification.id', index=0,
- number=1, type=5, cpp_type=1, label=2,
- has_default_value=False, default_value=0,
- message_type=None, enum_type=None, containing_type=None,
- is_extension=False, extension_scope=None,
- options=None),
- _descriptor.FieldDescriptor(
- name='component', full_name='leap.common.Notification.component', index=1,
- number=2, type=14, cpp_type=8, label=2,
- has_default_value=False, default_value=0,
- message_type=None, enum_type=None, containing_type=None,
- is_extension=False, extension_scope=None,
- options=None),
- _descriptor.FieldDescriptor(
- name='content', full_name='leap.common.Notification.content', index=2,
- number=3, type=9, cpp_type=9, label=2,
- has_default_value=False, default_value=unicode("", "utf-8"),
- message_type=None, enum_type=None, containing_type=None,
- is_extension=False, extension_scope=None,
- options=None),
- _descriptor.FieldDescriptor(
- name='mac_method', full_name='leap.common.Notification.mac_method', index=3,
- number=4, type=9, cpp_type=9, label=2,
- has_default_value=False, default_value=unicode("", "utf-8"),
- message_type=None, enum_type=None, containing_type=None,
- is_extension=False, extension_scope=None,
- options=None),
- _descriptor.FieldDescriptor(
- name='mac', full_name='leap.common.Notification.mac', index=4,
- number=5, type=12, cpp_type=9, label=2,
- has_default_value=False, default_value="",
- message_type=None, enum_type=None, containing_type=None,
- is_extension=False, extension_scope=None,
- options=None),
- _descriptor.FieldDescriptor(
- name='enc_method', full_name='leap.common.Notification.enc_method', index=5,
- number=6, type=9, cpp_type=9, label=1,
- has_default_value=False, default_value=unicode("", "utf-8"),
- message_type=None, enum_type=None, containing_type=None,
- is_extension=False, extension_scope=None,
- options=None),
- _descriptor.FieldDescriptor(
- name='error_occurred', full_name='leap.common.Notification.error_occurred', index=6,
- number=7, type=8, cpp_type=7, label=1,
- has_default_value=False, default_value=False,
- message_type=None, enum_type=None, containing_type=None,
- is_extension=False, extension_scope=None,
- options=None),
- ],
- extensions=[
- ],
- nested_types=[],
- enum_types=[
- _NOTIFICATION_COMPONENT,
- ],
- options=None,
- is_extendable=False,
- extension_ranges=[],
- serialized_start=36,
- serialized_end=283,
-)
-
-_NOTIFICATION.fields_by_name['component'].enum_type = _NOTIFICATION_COMPONENT
-_NOTIFICATION_COMPONENT.containing_type = _NOTIFICATION;
-DESCRIPTOR.message_types_by_name['Notification'] = _NOTIFICATION
-
-class Notification(_message.Message):
- __metaclass__ = _reflection.GeneratedProtocolMessageType
- DESCRIPTOR = _NOTIFICATION
-
- # @@protoc_insertion_point(class_scope:leap.common.Notification)
-
-
-# @@protoc_insertion_point(module_scope)