aboutsummaryrefslogtreecommitdiffstats
path: root/test/vpp_lo_interface.py
diff options
context:
space:
mode:
authorChristian E. Hopps <chopps@chopps.org>2019-09-27 14:35:32 -0400
committerDamjan Marion <dmarion@me.com>2019-12-17 18:40:14 +0000
commit19871f25394fa9a4bfb55006092cbcc28b446c04 (patch)
tree77b064d89d67b50c998a54a3f0e71adb0f9ecbed /test/vpp_lo_interface.py
parent0812aea046209dc990ec704258570f46d3fa74c8 (diff)
pg: don't leak open files in packet-generator
Fix pg code to close it's open file descriptors before zero'ing the pcap_main structure for re-use. Ticket: VPP-1780 Type: fix Signed-off-by: Christian E. Hopps <chopps@chopps.org> Change-Id: I32945c6476ae83b8d210ee67ac78db3e8f786f46
Diffstat (limited to 'test/vpp_lo_interface.py')
0 files changed, 0 insertions, 0 deletions
ound-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
Metadata-Version: 1.1
Name: python-daemon
Version: 2.0.5
Summary: Library to implement a well-behaved Unix daemon process.
Home-page: https://alioth.debian.org/projects/python-daemon/
Author: Ben Finney
Author-email: ben+python@benfinney.id.au
License: Apache-2
Description: This library implements the well-behaved daemon specification of
        :pep:`3143`, “Standard daemon process library”.
        
        A well-behaved Unix daemon process is tricky to get right, but the
        required steps are much the same for every daemon program. A
        `DaemonContext` instance holds the behaviour and configured
        process environment for the program; use the instance as a context
        manager to enter a daemon state.
        
        Simple example of usage::
        
            import daemon
        
            from spam import do_main_program
        
            with daemon.DaemonContext():
                do_main_program()
        
        Customisation of the steps to become a daemon is available by
        setting options on the `DaemonContext` instance; see the
        documentation for that class for each option.
Keywords: daemon,fork,unix
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules