we release under GPL v3
This commit is contained in:
parent
218892ee97
commit
b11524ea1d
|
@ -1,15 +1,17 @@
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Gajim Team
|
## Copyright (C) 2006 Gajim Team
|
||||||
##
|
##
|
||||||
## This program is free software; you can redistribute it and/or modify
|
## Gajim is free software; you can redistribute it and/or modify
|
||||||
## it under the terms of the GNU General Public License as published
|
## it under the terms of the GNU General Public License as published
|
||||||
## by the Free Software Foundation; version 2 only.
|
## by the Free Software Foundation; version 3 only.
|
||||||
##
|
##
|
||||||
## This program is distributed in the hope that it will be useful,
|
## Gajim is distributed in the hope that it will be useful,
|
||||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
##
|
##
|
||||||
|
## You should have received a copy of the GNU General Public License
|
||||||
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
||||||
"""
|
"""
|
||||||
Handles the jingle signalling protocol
|
Handles the jingle signalling protocol
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Gajim Team
|
## Copyright (C) 2006 Gajim Team
|
||||||
##
|
##
|
||||||
## This program is free software; you can redistribute it and/or modify
|
## Gajim is free software; you can redistribute it and/or modify
|
||||||
## it under the terms of the GNU General Public License as published
|
## it under the terms of the GNU General Public License as published
|
||||||
## by the Free Software Foundation; version 2 only.
|
## by the Free Software Foundation; version 3 only.
|
||||||
##
|
##
|
||||||
## This program is distributed in the hope that it will be useful,
|
## Gajim is distributed in the hope that it will be useful,
|
||||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
##
|
##
|
||||||
|
## You should have received a copy of the GNU General Public License
|
||||||
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Handles Jingle contents (XEP 0166)
|
Handles Jingle contents (XEP 0166)
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Gajim Team
|
## Copyright (C) 2006 Gajim Team
|
||||||
##
|
##
|
||||||
## This program is free software; you can redistribute it and/or modify
|
## Gajim is free software; you can redistribute it and/or modify
|
||||||
## it under the terms of the GNU General Public License as published
|
## it under the terms of the GNU General Public License as published
|
||||||
## by the Free Software Foundation; version 2 only.
|
## by the Free Software Foundation; version 3 only.
|
||||||
##
|
##
|
||||||
## This program is distributed in the hope that it will be useful,
|
## Gajim is distributed in the hope that it will be useful,
|
||||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
##
|
##
|
||||||
|
## You should have received a copy of the GNU General Public License
|
||||||
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from common import gajim
|
from common import gajim
|
||||||
import nbxmpp
|
import nbxmpp
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Gajim Team
|
## Copyright (C) 2006 Gajim Team
|
||||||
##
|
##
|
||||||
## This program is free software; you can redistribute it and/or modify
|
## Gajim is free software; you can redistribute it and/or modify
|
||||||
## it under the terms of the GNU General Public License as published
|
## it under the terms of the GNU General Public License as published
|
||||||
## by the Free Software Foundation; version 2 only.
|
## by the Free Software Foundation; version 3 only.
|
||||||
##
|
##
|
||||||
## This program is distributed in the hope that it will be useful,
|
## Gajim is distributed in the hope that it will be useful,
|
||||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
##
|
##
|
||||||
|
## You should have received a copy of the GNU General Public License
|
||||||
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Handles Jingle RTP sessions (XEP 0167)
|
Handles Jingle RTP sessions (XEP 0167)
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Gajim Team
|
## Copyright (C) 2006 Gajim Team
|
||||||
##
|
##
|
||||||
## This program is free software; you can redistribute it and/or modify
|
## Gajim is free software; you can redistribute it and/or modify
|
||||||
## it under the terms of the GNU General Public License as published
|
## it under the terms of the GNU General Public License as published
|
||||||
## by the Free Software Foundation; version 2 only.
|
## by the Free Software Foundation; version 3 only.
|
||||||
##
|
##
|
||||||
## This program is distributed in the hope that it will be useful,
|
## Gajim is distributed in the hope that it will be useful,
|
||||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
##
|
##
|
||||||
|
## You should have received a copy of the GNU General Public License
|
||||||
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Handles Jingle sessions (XEP 0166)
|
Handles Jingle sessions (XEP 0166)
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
##
|
##
|
||||||
## Copyright (C) 2006 Gajim Team
|
## Copyright (C) 2006 Gajim Team
|
||||||
##
|
##
|
||||||
## This program is free software; you can redistribute it and/or modify
|
## Gajim is free software; you can redistribute it and/or modify
|
||||||
## it under the terms of the GNU General Public License as published
|
## it under the terms of the GNU General Public License as published
|
||||||
## by the Free Software Foundation; version 2 only.
|
## by the Free Software Foundation; version 3 only.
|
||||||
##
|
##
|
||||||
## This program is distributed in the hope that it will be useful,
|
## Gajim is distributed in the hope that it will be useful,
|
||||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
##
|
##
|
||||||
|
## You should have received a copy of the GNU General Public License
|
||||||
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Handles Jingle Transports (currently only ICE-UDP)
|
Handles Jingle Transports (currently only ICE-UDP)
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
##
|
##
|
||||||
## Copyright (C) 2009 Thibaut GIRKA <thib AT sitedethib.com>
|
## Copyright (C) 2009 Thibaut GIRKA <thib AT sitedethib.com>
|
||||||
##
|
##
|
||||||
## This program is free software; you can redistribute it and/or modify
|
## Gajim is free software; you can redistribute it and/or modify
|
||||||
## it under the terms of the GNU General Public License as published
|
## it under the terms of the GNU General Public License as published
|
||||||
## by the Free Software Foundation; version 2 only.
|
## by the Free Software Foundation; version 3 only.
|
||||||
##
|
##
|
||||||
## This program is distributed in the hope that it will be useful,
|
## Gajim is distributed in the hope that it will be useful,
|
||||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
##
|
##
|
||||||
|
## You should have received a copy of the GNU General Public License
|
||||||
|
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue