/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to server.py

mandosclient
        Droping privileges
        split gnutls function into global and session

* server.py (if_nametoindex): Redefine itself instead of using a
                              default keyword argument.

Show diffs side-by-side

added added

removed removed

Lines of Context:
433
433
    def handle(self):
434
434
        logger.debug(u"TCP connection from: %s",
435
435
                     unicode(self.client_address))
436
 
        session = gnutls.connection.ClientSession\
437
 
                  (self.request, gnutls.connection.X509Credentials())
438
 
        
 
436
 
439
437
        line = self.request.makefile().readline()
440
438
        logger.debug(u"Protocol version: %r", line)
441
439
        try:
445
443
            logger.error(u"Unknown protocol version: %s", error)
446
444
            return
447
445
        
 
446
        session = gnutls.connection.ClientSession\
 
447
                  (self.request, gnutls.connection.X509Credentials())
448
448
        # Note: gnutls.connection.X509Credentials is really a generic
449
449
        # GnuTLS certificate credentials object so long as no X.509
450
450
        # keys are added to it.  Therefore, we can use it here despite