This file is indexed.

/usr/lib/python2.7/dist-packages/framework/subsystems/ogsmd/modems/option/modem.py is in fso-frameworkd 0.10.1-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
"""
The Open GSM Daemon - Python Implementation

(C) 2008 Michael 'Mickey' Lauer <mlauer@vanille-media.de>
(C) 2008 Daniel Willmann <daniel@totalueberwachung.de>
(C) 2008 Openmoko, Inc.
GPLv2 or later

Package: ogsmd.modems.option
Module: modem
"""

__version__ = "0.1.0"
MODULE_NAME = "ogsmd.modems.option"

import mediator

from ..abstract.modem import AbstractModem

from .channel import OptionChannel
from .unsolicited import UnsolicitedResponseDelegate

from ogsmd.gsm.decor import logged
from ogsmd.gsm.channel import AtCommandChannel

#=========================================================================#
class Option( AbstractModem ):
#=========================================================================#

    @logged
    def __init__( self, *args, **kwargs ):
        AbstractModem.__init__( self, *args, **kwargs )

        # The one and only serial line
        self._channels["UNSOL"] = OptionChannel( self.pathfactory, "/dev/ttyUSB2", modem=self )
        # configure channels
        self._channels["UNSOL"].setDelegate( UnsolicitedResponseDelegate( self._object, mediator ) )

        self._data["pppd-configuration"] = [ \
                    "115200",
                    "nodetach",
                    "crtscts",
                    "noipdefault",
                    ":10.0.0.1",
                    "local",
                    'defaultroute',
                    'debug',
                    'hide-password',
                    'ipcp-accept-local',
                    #"lcp-echo-failure", "10",
                    #"lcp-echo-interval", "3",
                    "noauth",
                    #"demand",
                    "noipdefault",
                    "novj",
                    "novjccomp",
                    "persist" ]

    def channel( self, category ):
        return self._channels["UNSOL"]

    def pathfactory( self, name ):
        return name

    def dataPort( self ):
        # FIXME remove duplication and just use pathfactory
        return "/dev/ttyUSB0"