Frame state

Hi,
How can I open frame with maximize and minimize buttons not active.
It's in applet with AWT.
Thanks,

Without JNI solutions, you can't.
You can have the user not being able to use the buttons (with a WindowListener - just undo the user's action), but that's not the same and not reliable enough.
This sort of stuff was never implemented in Java because it is not platform independent (in my opinion).
Kind regards,
Levi

Similar Messages

  • Add video to button over frame/state

    How can I add a few seconds of video into the over
    frame/state of a button?
    Visit
    http://www.fxnetworks.com/shows/originals/rescueme/#/home/
    to see the example of video that animates when I mouse over the the
    red boxes Exclusive Video, About The Show, and Cast &
    Crew.

    Refer the flashvideogallery made by adobe using AS2 and AS3 .
    In the samples of video-flash

  • Add static background image to all frames of gif animation

    First, I'm not a fireworks regular. I use it when I have to to get something done (mostly web optimazations). I would use it more but, frankly in many cases the UI is counter intuitive to everything else adobe makes.
    Here is my problem...
    I need to add (not replace) a static background to ALL existing frames(states) in a fireworks gif animation (with alpha) , the end product gif will be an element in the Edge web animation...details
    I have an animated seq of a rotating object that was created in 3ds max and rendered as a png seq with alpha.
    I opened the SEQ "as animation" in fireworks. I set the frame rate. It plays fine. So far so good....
    I imported an image that I want to be BEHIND the animated seq on ALL frames. I tried puting it on a sub layer behind, i tried puting it on it's own layer behind, but it ONLY shows on the first frame (state).
    I tried using "share with all states" but it replaces the SEQ images already on the "states" instead of adding it behind them like in the arrangement of the layers.
    So first, can this be done and if so how?
    Second, why is this process so counter intuitive in fireworks? I mean if a layer is behind something then it should be a simple button click or check box etc to say "show on all frames (states)", you know like any other product adobe makes. Even "image ready" made more sense than this.  My thought process was that since I needed to end up in fireworks to create and optimize the gif that i should be able to put it together there also but it's turning out to be a lot harder than it should. I guess I can just composite my elements in AE (which is a piece of cake compared to fireworks) and then render another SEQ that I import to fireworks to create the optimized gif. While I'm a fan of the "creative suite" concept, one of my biggest complaints about the "suite" is the lack of master oversite so the common functions, keyboard shortcuts, and fundimental UI concepts are consitant accross all the apps so it functions as a "suite" and not just a collection of seperate applications. I know that demanding that all applications follow certian rules would slow development, in the long run it would make it a lot easier for the end user to spend more time being "creative" and less time trying to figure out why something doesn't work like it does in all the other apps. Just my $.02
    Thanks for any help and or explaination
    Joel H

    Thanks for the response.
    You know I tried that exact thing the only difference being I didn't change the layer names. So not naming the layers would keep that from working ?? Also as you eluded to draging layers to position them in fireworks is a delicate operation. It always seems to take 2 or 3 times to get it to drop where you want it. I named the layers and it works as you said.  Unfortunately I was really pressed for time so I had already given up on fireworks and just composited the SEQ with the BG layer in AE and kicked out another PNG SEQ and then open that "as animation" in Fireworks and then optimized and exported as a gif. So there are allways several ways to do things.
    Thanks again,
    Joel H

  • AS3 button state

    How to make a button stay down state after been clicked?
    stop();
    var ldr:Loader = new Loader();
    ldr.x = 300;
    ldr.y = 0;
    addChild(ldr);
    ldr.load(new URLRequest("myclip.swf"));
    projects_btn.addEventListener(MouseEvent.CLICK, clickFunction1);
    function clickFunction1(evt:MouseEvent):void {
    gotoAndPlay(2);

    If you create the button as a movieclip you can control of which frame/state it is in.  Otherwise, if it is a SimpleButton symbol, in AS3 you can change the upState property to equal the downState property, but then you would need to retain some reference of the upState if you plan to return there sometime later.  The movieclip approach gives more reliable control.

  • Remembering Window State

    Various threads have addressed parts of this topic, but I haven't seen a complete workable solution so far. Here's the problem:
    When my application starts, it's supposed to restore its main window (a JFrame) to the state it had when it was last closed (unless it was minimized). If it was maximized, it should maximize automatically, otherwise it should open with the same location & dimensions it last had. As the application runs, I monitor changes in size, location & maximized state, then save them to a properties file when it exits.
    Mostly, this is working OK, but I'm having a problem the ComponentListener. When the user maximizes the window, the componentMoved method is called, but at that point the Frame state doesn't indicate the window is maximized. So I save the window coordinates, but they turn out to the wrong coordinates, because the window is maximized. Here's my componentMoved method:
    * Saves new position when frame moves.
    * @param event The event being handled.
    public void componentMoved(ComponentEvent event)
       Object source = event.getSource();
       if (source instanceof UprrFrame)
          UprrFrame frame = (UprrFrame)source;
          if (frame.isMaximized() == false)
             frame.saveBounds();
    }The frame.IsMaximized method looks like this:
    * Determines whether the frame is currently maximized.
    * @return <b><code>True</code></b> if maximized.
    public boolean isMaximized()
       int state = getExtendedState();
       boolean maximized = (state & Frame.MAXIMIZED_BOTH) == Frame.MAXIMIZED_BOTH;
       return maximized;
    }I'm, not sure if I'm doing something wrong, or whether I've stumbled across an AWT/Swing bug. Any insights would be greatly appreciated!
    P.S. I'm running JDK 1.4 under Windows XP.

    If your solution works for you, then thats all good. However, i'll add this for completion...
    Actually, the invokeLater in componentMoved does not always work in this case... it might seem to work all the time, but in reality, it's just luck that it's working. If you test it in enough environments, or with slower machines, you'll see what I mean.
    Basically, you are trying to time it so that the test for frame maximization occurs after the window state change event. However, the window state change events are caused by asynchronous native window events.. and if the machine is slow enough (or perhaps fast enough), the invoke later is executed too sonn, and it says the frame is not maximized when it is.
    You need to save the window location in componentResized, and rollback the save transaction when you hear a window state changed event from NORMAL -> BOTH_MAXIMIZED.

  • GIF decoding

    This works on WinXP but not Linux. Why? It takes the first frame of an animated gif and writes a thumbnail.
                GifDecoder d = new GifDecoder();    
                try {
                    fis = new FileInputStream(file);          
                    bis = new BufferedInputStream(fis);            
                    log.debug("reading gif");
                    d.read(bis);
                    log.debug("reading framecount");
                    int n = d.getFrameCount();
                    log.debug("read framecount" + n);
                    for (int i = 0; i < 1; i++) {
                        BufferedImage frame = d.getFrame(i);  // frame i
                        int t = d.getDelay(i);  // display duration of frame in milliseconds
                        log.debug("resizing frame");
                            File gifoutputfile = new File("gif" + i + outputthumbFilename);
                        BufferedImage bdest = new BufferedImage(60, 60, BufferedImage.TYPE_INT_RGB);
                        Graphics2D g = bdest.createGraphics();
                        AffineTransform at = AffineTransform.getScaleInstance((double) 60 / frame.getWidth(), (double) 60 / frame.getHeight());
                        g.drawRenderedImage(frame, at);
                        ImageIO.setUseCache(false);
                        ImageIO.write(bdest, "GIF", new File(outputthumbFilename));           
                } catch (FileNotFoundException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
    import java.awt.AlphaComposite;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    import java.awt.image.BufferedImage;
    import java.awt.image.DataBufferInt;
    import java.io.BufferedInputStream;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URL;
    import java.util.ArrayList;
    * Class GifDecoder - Decodes a GIF file into one or more frames. <br>
    * <pre>
    *  Example:
    *     GifDecoder d = new GifDecoder();
    *     d.read("sample.gif");
    *     int n = d.getFrameCount();
    *     for (int i = 0; i < n; i++) {
    *        BufferedImage frame = d.getFrame(i);  // frame i
    *        int t = d.getDelay(i);  // display duration of frame in milliseconds
    *        // do something with frame
    * </pre>
    * No copyright asserted on the source code of this class. May be used for any
    * purpose, however, refer to the Unisys LZW patent for any additional
    * restrictions. Please forward any corrections to [email protected].
    * @author Kevin Weiner, FM Software; LZW decoder adapted from John Cristy's
    *         ImageMagick.
    * @version 1.03 November 2003
    public class GifDecoder {
       * File read status: No errors.
      public static final int STATUS_OK = 0;
       * File read status: Error decoding file (may be partially decoded)
      public static final int STATUS_FORMAT_ERROR = 1;
       * File read status: Unable to open source.
      public static final int STATUS_OPEN_ERROR = 2;
      protected BufferedInputStream in;
      protected int status;
      protected int width; // full image width
      protected int height; // full image height
      protected boolean gctFlag; // global color table used
      protected int gctSize; // size of global color table
      protected int loopCount = 1; // iterations; 0 = repeat forever
      protected int[] gct; // global color table
      protected int[] lct; // local color table
      protected int[] act; // active color table
      protected int bgIndex; // background color index
      protected int bgColor; // background color
      protected int lastBgColor; // previous bg color
      protected int pixelAspect; // pixel aspect ratio
      protected boolean lctFlag; // local color table flag
      protected boolean interlace; // interlace flag
      protected int lctSize; // local color table size
      protected int ix, iy, iw, ih; // current image rectangle
      protected Rectangle lastRect; // last image rect
      protected BufferedImage image; // current frame
      protected BufferedImage lastImage; // previous frame
      protected byte[] block = new byte[256]; // current data block
      protected int blockSize = 0; // block size
      // last graphic control extension info
      protected int dispose = 0;
      // 0=no action; 1=leave in place; 2=restore to bg; 3=restore to prev
      protected int lastDispose = 0;
      protected boolean transparency = false; // use transparent color
      protected int delay = 0; // delay in milliseconds
      protected int transIndex; // transparent color index
      protected static final int MaxStackSize = 4096;
      // max decoder pixel stack size
      // LZW decoder working arrays
      protected short[] prefix;
      protected byte[] suffix;
      protected byte[] pixelStack;
      protected byte[] pixels;
      protected ArrayList frames; // frames read from current file
      protected int frameCount;
      static class GifFrame {
        public GifFrame(BufferedImage im, int del) {
          image = im;
          delay = del;
        public BufferedImage image;
        public int delay;
       * Gets display duration for specified frame.
       * @param n
       *          int index of frame
       * @return delay in milliseconds
      public int getDelay(int n) {
        delay = -1;
        if ((n >= 0) && (n < frameCount)) {
          delay = ((GifFrame) frames.get(n)).delay;
        return delay;
       * Gets the number of frames read from file.
       * @return frame count
      public int getFrameCount() {
        return frameCount;
       * Gets the first (or only) image read.
       * @return BufferedImage containing first frame, or null if none.
      public BufferedImage getImage() {
        return getFrame(0);
       * Gets the "Netscape" iteration count, if any. A count of 0 means repeat
       * indefinitiely.
       * @return iteration count if one was specified, else 1.
      public int getLoopCount() {
        return loopCount;
       * Creates new frame image from current data (and previous frames as specified
       * by their disposition codes).
      protected void setPixels() {
        // expose destination image's pixels as int array
        int[] dest = ((DataBufferInt) image.getRaster().getDataBuffer()).getData();
        // fill in starting image contents based on last image's dispose code
        if (lastDispose > 0) {
          if (lastDispose == 3) {
            // use image before last
            int n = frameCount - 2;
            if (n > 0) {
              lastImage = getFrame(n - 1);
            } else {
              lastImage = null;
          if (lastImage != null) {
            int[] prev = ((DataBufferInt) lastImage.getRaster().getDataBuffer()).getData();
            System.arraycopy(prev, 0, dest, 0, width * height);
            // copy pixels
            if (lastDispose == 2) {
              // fill last image rect area with background color
              Graphics2D g = image.createGraphics();
              Color c = null;
              if (transparency) {
                c = new Color(0, 0, 0, 0); // assume background is transparent
              } else {
                c = new Color(lastBgColor); // use given background color
              g.setColor(c);
              g.setComposite(AlphaComposite.Src); // replace area
              g.fill(lastRect);
              g.dispose();
        // copy each source line to the appropriate place in the destination
        int pass = 1;
        int inc = 8;
        int iline = 0;
        for (int i = 0; i < ih; i++) {
          int line = i;
          if (interlace) {
            if (iline >= ih) {
              pass++;
              switch (pass) {
              case 2:
                iline = 4;
                break;
              case 3:
                iline = 2;
                inc = 4;
                break;
              case 4:
                iline = 1;
                inc = 2;
            line = iline;
            iline += inc;
          line += iy;
          if (line < height) {
            int k = line * width;
            int dx = k + ix; // start of line in dest
            int dlim = dx + iw; // end of dest line
            if ((k + width) < dlim) {
              dlim = k + width; // past dest edge
            int sx = i * iw; // start of line in source
            while (dx < dlim) {
              // map color and insert in destination
              int index = ((int) pixels[sx++]) & 0xff;
              int c = act[index];
              if (c != 0) {
                dest[dx] = c;
              dx++;
       * Gets the image contents of frame n.
       * @return BufferedImage representation of frame, or null if n is invalid.
      public BufferedImage getFrame(int n) {
        BufferedImage im = null;
        if ((n >= 0) && (n < frameCount)) {
          im = ((GifFrame) frames.get(n)).image;
        return im;
       * Gets image size.
       * @return GIF image dimensions
      public Dimension getFrameSize() {
        return new Dimension(width, height);
       * Reads GIF image from stream
       * @param BufferedInputStream
       *          containing GIF file.
       * @return read status code (0 = no errors)
      public int read(BufferedInputStream is) {
        init();
        if (is != null) {
          in = is;
          readHeader();
          if (!err()) {
            readContents();
            if (frameCount < 0) {
              status = STATUS_FORMAT_ERROR;
        } else {
          status = STATUS_OPEN_ERROR;
        try {
          is.close();
        } catch (IOException e) {
        return status;
       * Reads GIF image from stream
       * @param InputStream
       *          containing GIF file.
       * @return read status code (0 = no errors)
      public int read(InputStream is) {
        init();
        if (is != null) {
          if (!(is instanceof BufferedInputStream))
            is = new BufferedInputStream(is);
          in = (BufferedInputStream) is;
          readHeader();
          if (!err()) {
            readContents();
            if (frameCount < 0) {
              status = STATUS_FORMAT_ERROR;
        } else {
          status = STATUS_OPEN_ERROR;
        try {
          is.close();
        } catch (IOException e) {
        return status;
       * Reads GIF file from specified file/URL source (URL assumed if name contains
       * ":/" or "file:")
       * @param name
       *          String containing source
       * @return read status code (0 = no errors)
      public int read(String name) {
        status = STATUS_OK;
        try {
          name = name.trim().toLowerCase();
          if ((name.indexOf("file:") >= 0) || (name.indexOf(":/") > 0)) {
            URL url = new URL(name);
            in = new BufferedInputStream(url.openStream());
          } else {
            in = new BufferedInputStream(new FileInputStream(name));
          status = read(in);
        } catch (IOException e) {
          status = STATUS_OPEN_ERROR;
        return status;
       * Decodes LZW image data into pixel array. Adapted from John Cristy's
       * ImageMagick.
      protected void decodeImageData() {
        int NullCode = -1;
        int npix = iw * ih;
        int available, clear, code_mask, code_size, end_of_information, in_code, old_code, bits, code, count, i, datum, data_size, first, top, bi, pi;
        if ((pixels == null) || (pixels.length < npix)) {
          pixels = new byte[npix]; // allocate new pixel array
        if (prefix == null)
          prefix = new short[MaxStackSize];
        if (suffix == null)
          suffix = new byte[MaxStackSize];
        if (pixelStack == null)
          pixelStack = new byte[MaxStackSize + 1];
        // Initialize GIF data stream decoder.
        data_size = read();
        clear = 1 << data_size;
        end_of_information = clear + 1;
        available = clear + 2;
        old_code = NullCode;
        code_size = data_size + 1;
        code_mask = (1 << code_size) - 1;
        for (code = 0; code < clear; code++) {
          prefix[code] = 0;
          suffix[code] = (byte) code;
        // Decode GIF pixel stream.
        datum = bits = count = first = top = pi = bi = 0;
        for (i = 0; i < npix;) {
          if (top == 0) {
            if (bits < code_size) {
              // Load bytes until there are enough bits for a code.
              if (count == 0) {
                // Read a new data block.
                count = readBlock();
                if (count <= 0)
                  break;
                bi = 0;
              datum += (((int) block[bi]) & 0xff) << bits;
              bits += 8;
              bi++;
              count--;
              continue;
            // Get the next code.
            code = datum & code_mask;
            datum >>= code_size;
            bits -= code_size;
            // Interpret the code
            if ((code > available) || (code == end_of_information))
              break;
            if (code == clear) {
              // Reset decoder.
              code_size = data_size + 1;
              code_mask = (1 << code_size) - 1;
              available = clear + 2;
              old_code = NullCode;
              continue;
            if (old_code == NullCode) {
              pixelStack[top++] = suffix[code];
              old_code = code;
              first = code;
              continue;
            in_code = code;
            if (code == available) {
              pixelStack[top++] = (byte) first;
              code = old_code;
            while (code > clear) {
              pixelStack[top++] = suffix[code];
              code = prefix[code];
            first = ((int) suffix[code]) & 0xff;
            // Add a new string to the string table,
            if (available >= MaxStackSize)
              break;
            pixelStack[top++] = (byte) first;
            prefix[available] = (short) old_code;
            suffix[available] = (byte) first;
            available++;
            if (((available & code_mask) == 0) && (available < MaxStackSize)) {
              code_size++;
              code_mask += available;
            old_code = in_code;
          // Pop a pixel off the pixel stack.
          top--;
          pixels[pi++] = pixelStack[top];
          i++;
        for (i = pi; i < npix; i++) {
          pixels[i] = 0; // clear missing pixels
       * Returns true if an error was encountered during reading/decoding
      protected boolean err() {
        return status != STATUS_OK;
       * Initializes or re-initializes reader
      protected void init() {
        status = STATUS_OK;
        frameCount = 0;
        frames = new ArrayList();
        gct = null;
        lct = null;
       * Reads a single byte from the input stream.
      protected int read() {
        int curByte = 0;
        try {
          curByte = in.read();
        } catch (IOException e) {
          status = STATUS_FORMAT_ERROR;
        return curByte;
       * Reads next variable length block from input.
       * @return number of bytes stored in "buffer"
      protected int readBlock() {
        blockSize = read();
        int n = 0;
        if (blockSize > 0) {
          try {
            int count = 0;
            while (n < blockSize) {
              count = in.read(block, n, blockSize - n);
              if (count == -1)
                break;
              n += count;
          } catch (IOException e) {
          if (n < blockSize) {
            status = STATUS_FORMAT_ERROR;
        return n;
       * Reads color table as 256 RGB integer values
       * @param ncolors
       *          int number of colors to read
       * @return int array containing 256 colors (packed ARGB with full alpha)
      protected int[] readColorTable(int ncolors) {
        int nbytes = 3 * ncolors;
        int[] tab = null;
        byte[] c = new byte[nbytes];
        int n = 0;
        try {
          n = in.read(c);
        } catch (IOException e) {
        if (n < nbytes) {
          status = STATUS_FORMAT_ERROR;
        } else {
          tab = new int[256]; // max size to avoid bounds checks
          int i = 0;
          int j = 0;
          while (i < ncolors) {
            int r = ((int) c[j++]) & 0xff;
            int g = ((int) c[j++]) & 0xff;
            int b = ((int) c[j++]) & 0xff;
            tab[i++] = 0xff000000 | (r << 16) | (g << 8) | b;
        return tab;
       * Main file parser. Reads GIF content blocks.
      protected void readContents() {
        // read GIF file content blocks
        boolean done = false;
        while (!(done || err())) {
          int code = read();
          switch (code) {
          case 0x2C: // image separator
            readImage();
            break;
          case 0x21: // extension
            code = read();
            switch (code) {
            case 0xf9: // graphics control extension
              readGraphicControlExt();
              break;
            case 0xff: // application extension
              readBlock();
              String app = "";
              for (int i = 0; i < 11; i++) {
                app += (char) block;
    if (app.equals("NETSCAPE2.0")) {
    readNetscapeExt();
    } else
    skip(); // don't care
    break;
    default: // uninteresting extension
    skip();
    break;
    case 0x3b: // terminator
    done = true;
    break;
    case 0x00: // bad byte, but keep going and see what happens
    break;
    default:
    status = STATUS_FORMAT_ERROR;
    * Reads Graphics Control Extension values
    protected void readGraphicControlExt() {
    read(); // block size
    int packed = read(); // packed fields
    dispose = (packed & 0x1c) >> 2; // disposal method
    if (dispose == 0) {
    dispose = 1; // elect to keep old image if discretionary
    transparency = (packed & 1) != 0;
    delay = readShort() * 10; // delay in milliseconds
    transIndex = read(); // transparent color index
    read(); // block terminator
    * Reads GIF file header information.
    protected void readHeader() {
    String id = "";
    for (int i = 0; i < 6; i++) {
    id += (char) read();
    if (!id.startsWith("GIF")) {
    status = STATUS_FORMAT_ERROR;
    return;
    readLSD();
    if (gctFlag && !err()) {
    gct = readColorTable(gctSize);
    bgColor = gct[bgIndex];
    * Reads next frame image
    protected void readImage() {
    ix = readShort(); // (sub)image position & size
    iy = readShort();
    iw = readShort();
    ih = readShort();
    int packed = read();
    lctFlag = (packed & 0x80) != 0; // 1 - local color table flag
    interlace = (packed & 0x40) != 0; // 2 - interlace flag
    // 3 - sort flag
    // 4-5 - reserved
    lctSize = 2 << (packed & 7); // 6-8 - local color table size
    if (lctFlag) {
    lct = readColorTable(lctSize); // read table
    act = lct; // make local table active
    } else {
    act = gct; // make global table active
    if (bgIndex == transIndex)
    bgColor = 0;
    int save = 0;
    if (transparency) {
    save = act[transIndex];
    act[transIndex] = 0; // set transparent color if specified
    if (act == null) {
    status = STATUS_FORMAT_ERROR; // no color table defined
    if (err())
    return;
    decodeImageData(); // decode pixel data
    skip();
    if (err())
    return;
    frameCount++;
    // create new image to receive frame data
    image = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB_PRE);
    setPixels(); // transfer pixel data to image
    frames.add(new GifFrame(image, delay)); // add image to frame list
    if (transparency) {
    act[transIndex] = save;
    resetFrame();
    * Reads Logical Screen Descriptor
    protected void readLSD() {
    // logical screen size
    width = readShort();
    height = readShort();
    // packed fields
    int packed = read();
    gctFlag = (packed & 0x80) != 0; // 1 : global color table flag
    // 2-4 : color resolution
    // 5 : gct sort flag
    gctSize = 2 << (packed & 7); // 6-8 : gct size
    bgIndex = read(); // background color index
    pixelAspect = read(); // pixel aspect ratio
    * Reads Netscape extenstion to obtain iteration count
    protected void readNetscapeExt() {
    do {
    readBlock();
    if (block[0] == 1) {
    // loop count sub-block
    int b1 = ((int) block[1]) & 0xff;
    int b2 = ((int) block[2]) & 0xff;
    loopCount = (b2 << 8) | b1;
    } while ((blockSize > 0) && !err());
    * Reads next 16-bit value, LSB first
    protected int readShort() {
    // read 16-bit value, LSB first
    return read() | (read() << 8);
    * Resets frame state for reading next image.
    protected void resetFrame() {
    lastDispose = dispose;
    lastRect = new Rectangle(ix, iy, iw, ih);
    lastImage = image;
    lastBgColor = bgColor;
    int dispose = 0;
    boolean transparency = false;
    int delay = 0;
    lct = null;
    * Skips variable length blocks up to and including next zero length block.
    protected void skip() {
    do {
    readBlock();
    } while ((blockSize > 0) && !err());
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     

    Niklas wrote:
    This works on WinXP but not Linux. Why? Please don't just post reams of code without providing more context and information.
    How is it failing on Linux? Wrong results? What are they? Error messages? What do they say? You need to give us some place to start looking.

  • Mouse events

    Me again (your everyday question botherer).
    I have a gallery made of 3 layers : actions, buttons, and images.
    Fore every image i have a keyframe that plays a movie clip by fading from 0 alpha to 1.
    I made a new keyframe that has no image so the page doesnt display the big photo from the start just the thumbs(which are the buttons).
    What i want to do is that the big images to be dispalyed only while i hold the mouse button, and on release to go back to the first frame state (no image).
    How can i do it?

    I'm not clear one the scenario you've tried to describe, but it sounds like you want to make use of the MOUSE_DOWN and MOUSE_UP elements of the MouseEvent class.

  • Animation Delay`

    Hi,
    I have a logo that I am animating here: http://agtdesigns.co.uk/logo.gif
    Basically I want the man to spin inside the circle. However, on the last frame/state of the animation it appears to stop/delay before moving onto the next frame. To solve this I set the delay for the last state to 0. When palying back the animation in Fireworks it is perfectly smooth with no delay.
    However when exporting the file the delay is still there, I have the 'include when exporting' option ticked for the last frame but it doesnt seem to be working.
    I am using Fireworks CS5, any help would be greatly appreciated.
    tia,
    Andy

    Nevermind, I realised I had a duplicate frame at the end.

  • The problem of profiling a multi-thread flash game  using adobe scout cc

    I have a multi-thread flash game code, it can run perfectly. The main swf creates another swf which will connect to a remote server. I can get profiling information of the main swf  using adobe scout cc, but the problem is that I can't get profiling information of another swf ! The scout complains " can't start a session because the telemetry data isn't valid" for another swf. Although some times, the scout does not complain, the Summary Panel of scout provides information“We encountered an error while processing this session: Some of the data we present may not be correct". And the scout log file shows:
    Log file created: 2014/11/20 15:35:08
    11/20/2014 15:35:08.395 Scout starting up.
    11/20/2014 15:35:08.471 InitDNSService failed
    11/20/2014 15:36:47.055 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [100000,200000] is greated than its parent
    11/20/2014 15:36:47.057 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [200000,300000] is greated than its parent
    11/20/2014 15:36:47.058 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [300000,400000] is greated than its parent
    11/20/2014 15:36:47.058 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [400000,500000] is greated than its parent
    11/20/2014 15:36:47.061 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [500000,600000] is greated than its parent
    11/20/2014 15:36:47.062 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [600000,700000] is greated than its parent
    11/20/2014 15:36:47.063 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [700000,800000] is greated than its parent
    11/20/2014 15:36:47.063 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [800000,900000] is greated than its parent
    11/20/2014 15:36:47.064 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [900000,1000000] is greated than its parent
    11/20/2014 15:36:47.064 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [1000000,1100000] is greated than its parent
    11/20/2014 15:36:47.064 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [1100000,1200000] is greated than its parent
    11/20/2014 15:36:47.065 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [1200000,1300000] is greated than its parent
    11/20/2014 15:36:47.065 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [1300000,1400000] is greated than its parent
    11/20/2014 15:36:47.065 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [1400000,1500000] is greated than its parent
    11/20/2014 15:36:47.066 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [1500000,1600000] is greated than its parent
    11/20/2014 15:36:47.066 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [1600000,1700000] is greated than its parent
    11/20/2014 15:36:47.066 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [1700000,1800000] is greated than its parent
    11/20/2014 15:36:47.067 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [1800000,1900000] is greated than its parent
    11/20/2014 15:36:47.067 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [1900000,2000000] is greated than its parent
    11/20/2014 15:36:47.067 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [2000000,2100000] is greated than its parent
    11/20/2014 15:36:47.068 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [2100000,2200000] is greated than its parent
    11/20/2014 15:36:47.068 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [2200000,2300000] is greated than its parent
    11/20/2014 15:36:47.068 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [2300000,2400000] is greated than its parent
    11/20/2014 15:36:47.069 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [2400000,2500000] is greated than its parent
    11/20/2014 15:36:47.069 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [2500000,2600000] is greated than its parent
    11/20/2014 15:36:47.069 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [2600000,2700000] is greated than its parent
    11/20/2014 15:36:47.070 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [2700000,2800000] is greated than its parent
    11/20/2014 15:36:47.070 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [2800000,2900000] is greated than its parent
    11/20/2014 15:36:47.070 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [2900000,3000000] is greated than its parent
    11/20/2014 15:36:47.071 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [3000000,3100000] is greated than its parent
    11/20/2014 15:36:47.071 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [3100000,3200000] is greated than its parent
    11/20/2014 15:46:30.931 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [100000,200000] is greated than its parent
    11/20/2014 15:46:30.933 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [200000,300000] is greated than its parent
    11/20/2014 15:46:30.936 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [300000,400000] is greated than its parent
    11/20/2014 15:46:30.937 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [400000,500000] is greated than its parent
    11/20/2014 15:46:30.937 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [500000,600000] is greated than its parent
    11/20/2014 15:46:30.937 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [600000,700000] is greated than its parent
    11/20/2014 15:46:30.937 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [700000,800000] is greated than its parent
    11/20/2014 15:46:30.938 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [800000,900000] is greated than its parent
    11/20/2014 15:46:30.938 <2896> <telemetryCore.Query> <1> Incorrect data: Memory category 7 for frame stats query over time interval [900000,1000000] is greated than its parent
    I run flash code directly on flash_player_11_7_sa.exe. I think the problem may have something to do with ActionScript Sampler of scout, because I can get the correct profiling information  without ActionScript Sampler.
    But I don't know what the information in the log file means.

    We are using Microsoft SQL Server 2008 . but it's well with MySQL & JBoss

  • MAC HD Icon in Dock Showing as BBLaunchAg​ent?????

    A week ago moved to Curve 9300 from T-Mobile.  Have a Macbook with 10.5.8.  Had BBDTM installed for about 2 years - no problems.
    A few days ago I got a quick message that popped up that indicated that something related to BB (I read it very quickly) wanted access to my keychain.  I clicked yes.  Now I have Macintosh HD icon in my dock.  When I click it, the upper left frame states 'BBLaunchAgent'.  When I click the 'BBLaunchAgent' there is no menu drop down.  I can't remove the HD icon from the dock - it just pops back.
    I don't know if its coincidence, but a day before this happened, I purchased a new wireless router (Belkin N150).  I do use the UMA function on the T-Mobile service to make calls over WiFi.
    I have uninstalled BBDTM.  Even go through the libraries to ensure that all the remnants are removed.  I even went and deleted any BB related keys in keychain.  That does make the icon go away.
    But when I reinstall BBDTM, the icon reappears.
    The icon makes me concerned - I don't want to screw anything up very badly.  Admittedly I am not very computer 'saavy' (why I purchased a Mac to begin with).
    Any help or guidance to get rid of this would be very helpful.
    Thanks!

    Go to the flag up on the right side of your Menu Bar and select Show Keyboard Viewer.
    Then start testing some keys including the Option key and watch the Keyboard Viewer to see if any are stuck or sticking.

  • Sketchy SubNav Drop Down Buttons

    There is some sort of conflicting code weirdness occurring
    with my two sub navigation button structures that pop down on the
    "Services" and the "Contact" buttons. For instance, when you mouse
    over the "Services" button, there is code that sends the movie to a
    frame labeled "services" which is where the sub-nav buttons are
    displayed. But as soon as you try to roll over any of the sub-nav
    buttons ("Karaoke" & "DJ Services" respectively) one of the
    actions encountered there mistakenly sends the movie back to the
    original frame labeled "norm." This makes it impossible to select
    any of the sub-nav buttons. If you move the mouse very slowly,
    you'll notice that this occurs precisely when the mouse encounters
    the script on the sub-nav buttons. I can't figure out where it's
    getting the idea that I want the root timeline to return to the
    "norm" frame.
    Here's the link to my test site:
    http://www.savagepixels.com/allstar/home.html
    I have also put together a link showing screen captures of my
    layers palette and of two states of the actions palette in question
    ... the first is the keyframe actions for the "norm" frame/state.
    Then an image of the actions for the "services' frame/state. Here's
    the link:
    http://www.savagepixels.com/allstar/asSample.html
    Thanks in advance for taking the time to help out :-)
    - scott

    Sorry, I missed the link to the code in the original post.
    What is the servicesButBacker_mc? Is that the main services button?
    That seems like the most likely candidate for the unintentional
    redirect back to "norm". If it is the main services button, you
    don't need the onRollOver function, since you're already on that
    frame. Also, I would make sure that the "hit" frame on that button
    is large enough to cover that button and the sub-menu buttons. If
    it's not, you would be sent back to "norm" once you moved off that
    button and over the sub-menu.
    You can use a trace(); function to test which function is
    being call to redirect back to "norm". If you run into any issues
    with the "hit" area, you can consolidate all three buttons into one
    movie clip that has the onRollOut function to go back to "norm".
    In general, you should probably be more specific when calling
    functions by using the "_root." and "this." prefixes, especially if
    you get movie clips inside of movie clips.

  • Hsqldb on ibm j9

    Hello All,
    Do anyone know about using hsqldb on j9 vm?
    i copied the hsqldb.jar to hp iPaq 1950 device.
    i wrote a simple program to create a database file on working directory.
    its not working, the program doesnt even deploy..
    Cud u share ur experiances?
    i give my code below
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    public class SimpleDb{
          Label label = new Label("Retrieving Data");
          Frame frame = new Frame();
          Statement st = null;
          Connection con = null;
         public SimpleDb(){
         frame.setTitle("SimpleDb--hsqldb");     
         frame.setBounds(0,0,150,150);
         Panel panel = new Panel();
         panel.setBounds(0,0,150,150);
         panel.setLayout(null);
         label.setBounds(10,10,100,50);
         Button button = new Button("OK");
         button.setBounds(10,70,50,50);
         button.addActionListener(new Listener());
         panel.add(button);
         panel.add(label);
         frame.add(panel);     
         frame.addWindowListener(new Listener());
         frame.setVisible(true);
         try{
              Class.forName("org.hsqldb.jdbcDriver");               
              con = DriverManager.getConnection("jdbc:hsqldb:file:mydb", "sa", "");          
              st = con.createStatement();
              st.executeUpdate("create table test(name varchar(30))");
              st.executeUpdate("insert into test values('Nishan')");
              //System.out.println("Insert OK");
              }catch(Exception ex){label.setText(ex+"");frame.repaint();}     
         public static void main(String a[]){     
              new SimpleDb();     
    class Listener extends WindowAdapter implements ActionListener
              public void windowClosing(WindowEvent e){
                   try{
                        //st.execute("SHUTDOWN");
                        //st.close();
                        //con.close();
                   }catch(Exception e4){}
                   System.exit(0);
              public void actionPerformed(ActionEvent a){
                   try{
              //ResultSet rs = st.executeQuery("select * from test");
              //rs.next();
              //label.setText(rs.getString(1));
              //frame.repaint();
              //System.out.println(rs.getString(1));     
              }catch(Exception exx){label.setText(exx+"");/*System.out.println("Exception :"+exx);*/}
    }     

    Hello,
    got it now,
    should include the file database)enabler.jar in class path...
    Thanks
    Regards
    nishan

  • Opening existing animated GIF in Fireworks CS6

    When opening existing animated GIF in Fireworks CS6, it always flattens it, opening it in its first frame. All other frames (states) are lost. What am I doing wrong?

    That's perplexing. I haven't used Dreamweaver in a while. Even though Fireworks is listed in Preferences as my primary image editor, I'm seeing Photoshop on the Edit button, at least with an animated GIF on the page. If I ctrl-click on the image, I can choose to edit it in Fireworks, in which case it opens normally, with all the states preserved.

  • Isolating/manipulating joined arcs in Flash

    In illustrator when using the pen tool and drawing
    arcs/curves, you may connect a series of curves and manipulate
    individual curves without affecting the ajdoining curve. I
    accomplish this by drawing curve #1 , selecting the end anchor
    point of that curve, press the option button, then drag a new curve
    using that end anchor point as the beginning point of the new
    attached arc or curve. All the preceding arcs are attached as a
    single object but I can manipulate each arc individually. How is
    this accomplished in Flash? If I attempt this in Flash I get the
    change direction icon and I lose one of the 2 handles on the
    previous curve!

    As kglad said, pay attention to the 4th frame in a button. There are 4 frames. First is the "off" state, second the "mouse over" state, third the "mouse being pressed" state and lastly the "hitarea". For each of these frames (states) it's up to you to put the right graphics in, if you wish to use buttons.
    The 4th frame of a button (or again, the "hitarea") is where you want to place an object that covers the area where you want the button to be triggered when your mouse enters it. That's the frame (in each separate button) you want to draw an outline of each region. You do not put the stroke in that frame or it will be considered a valid "hitarea" and when you roll over the stroke it will trigger the button. Right-click in that frame in the timeline and "insert a blank keyframe" to remove the stroke from it and then draw your region in that 4th frame. So keep your "hitarea" frame to just the area you want to trigger the button.
    Once the button is triggered via rolling inside the "hitarea" you defined above, it will show whatever you put in frame #2 or a button (the "mouse over" state). That's where you want to put a stroke that's highlighted in some way to indicate to the user the stroke is assigned to that region.
    Some old but valid button information from Adobe:
    http://helpx.adobe.com/flash/kb/create-buttons-flash.html

  • Broadcom 43142

    Hi,
    I have a problem with BCM43142 wifi module in my new notebook. As far as I know it's supported only in proprietary broadcom-wl driver. With this driver I'm able to connect and use a simple password protected network, but more complicated things fail.
    1. I've used to create ap hotspot for my other devices with my old laptop (this script https://bbs.archlinux.org/viewtopic.php?pid=1269258 worked like a charm). I could solve that by buying a router to my dormitory but for some situations it would be convenient to have this possibility again.
    2. Another problem is a connection to the eduroam network at my faculty. For that I need to use wpa_supplicant and it seems that it doesn't like my broadcom driver very much.
    Could someone help me with that? I don't know if I'm doing some stupid mistakes or if it's driver (or chip) problem which maybe doesn't even support things I want...
    As a last resort I'm considering replacing the broadcom module with http://www.intel.com/content/www/us/en/ … -6235.html with hope that it would have better support for what I need.

    My bad, I have switched to broadcom-wl-dkms and get the second point working now. It could probably work with broadcom-wl also because I had small mistake in wpa config file... Not going to test it though.
    Successfully initialized wpa_supplicant
    wlp4s0: Trying to associate with 00:1b:2b:a5:30:80 (SSID='eduroam' freq=2437 MHz)
    ioctl[SIOCSIWFREQ]: Operation not supported
    wlp4s0: Association request to the driver failed
    wlp4s0: Authentication with 00:1b:2b:a5:30:80 timed out.
    wlp4s0: CTRL-EVENT-DISCONNECTED bssid=00:1b:2b:a5:30:80 reason=3 locally_generated=1
    wlp4s0: Trying to associate with 00:1a:30:e6:40:60 (SSID='eduroam' freq=2412 MHz)
    ioctl[SIOCSIWFREQ]: Operation not supported
    wlp4s0: Association request to the driver failed
    wlp4s0: Associated with 00:1a:30:e6:40:60
    wlp4s0: CTRL-EVENT-EAP-STARTED EAP authentication started
    wlp4s0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25
    wlp4s0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=2 subject='/C=US/ST=UT/L=Salt Lake City/O=The USERTRUST Network/OU=http://www.usertrust.com/CN=UTN-USERFirst-Hardware'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=1 subject='/C=NL/O=TERENA/CN=TERENA SSL CA'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=0 subject='/OU=Domain Control Validated/CN=radius1.eduroam.cuni.cz'
    EAP-MSCHAPV2: Authentication succeeded
    EAP-TLV: TLV Result - Success - EAP-TLV/Phase2 Completed
    wlp4s0: CTRL-EVENT-EAP-SUCCESS EAP authentication completed successfully
    wlp4s0: WPA: Key negotiation completed with 00:1a:30:e6:40:60 [PTK=CCMP GTK=TKIP]
    wlp4s0: CTRL-EVENT-CONNECTED - Connection to 00:1a:30:e6:40:60 completed [id=0 id_str=]
    wlp4s0: Associated with 00:1b:2b:a5:30:80
    wlp4s0: CTRL-EVENT-EAP-STARTED EAP authentication started
    wlp4s0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25
    wlp4s0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected
    wlp4s0: Associated with 00:1b:2b:a5:30:80
    wlp4s0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25
    wlp4s0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=2 subject='/C=US/ST=UT/L=Salt Lake City/O=The USERTRUST Network/OU=http://www.usertrust.com/CN=UTN-USERFirst-Hardware'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=1 subject='/C=NL/O=TERENA/CN=TERENA SSL CA'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=0 subject='/OU=Domain Control Validated/CN=radius1.eduroam.cuni.cz'
    wlp4s0: CTRL-EVENT-EAP-FAILURE EAP authentication failed
    wlp4s0: CTRL-EVENT-DISCONNECTED bssid=00:1b:2b:a5:30:80 reason=0
    wlp4s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="eduroam" auth_failures=1 duration=10
    wlp4s0: CTRL-EVENT-SSID-REENABLED id=0 ssid="eduroam"
    wlp4s0: Trying to associate with 00:1b:2b:a5:30:80 (SSID='eduroam' freq=2437 MHz)
    ioctl[SIOCSIWFREQ]: Operation not supported
    wlp4s0: Association request to the driver failed
    wlp4s0: Authentication with 00:1b:2b:a5:30:80 timed out.
    wlp4s0: CTRL-EVENT-DISCONNECTED bssid=00:1b:2b:a5:30:80 reason=3 locally_generated=1
    wlp4s0: Trying to associate with 00:1a:30:e6:40:60 (SSID='eduroam' freq=2412 MHz)
    ioctl[SIOCSIWFREQ]: Operation not supported
    wlp4s0: Association request to the driver failed
    wlp4s0: Associated with 00:1a:30:e6:40:60
    wlp4s0: CTRL-EVENT-EAP-STARTED EAP authentication started
    wlp4s0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25
    wlp4s0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=2 subject='/C=US/ST=UT/L=Salt Lake City/O=The USERTRUST Network/OU=http://www.usertrust.com/CN=UTN-USERFirst-Hardware'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=1 subject='/C=NL/O=TERENA/CN=TERENA SSL CA'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=0 subject='/OU=Domain Control Validated/CN=radius1.eduroam.cuni.cz'
    EAP-MSCHAPV2: Authentication succeeded
    EAP-TLV: TLV Result - Success - EAP-TLV/Phase2 Completed
    wlp4s0: CTRL-EVENT-EAP-SUCCESS EAP authentication completed successfully
    wlp4s0: WPA: Key negotiation completed with 00:1a:30:e6:40:60 [PTK=CCMP GTK=TKIP]
    wlp4s0: CTRL-EVENT-CONNECTED - Connection to 00:1a:30:e6:40:60 completed [id=0 id_str=]
    wlp4s0: CTRL-EVENT-DISCONNECTED bssid=00:1a:30:e6:40:60 reason=0
    wlp4s0: Trying to associate with 00:1b:2b:a5:50:70 (SSID='eduroam' freq=2462 MHz)
    ioctl[SIOCSIWFREQ]: Operation not supported
    wlp4s0: Association request to the driver failed
    wlp4s0: Associated with 00:1b:2b:a5:50:70
    wlp4s0: CTRL-EVENT-EAP-STARTED EAP authentication started
    wlp4s0: Associated with 00:1b:2b:a5:30:80
    wlp4s0: Associated with 00:1b:2b:a5:30:80
    wlp4s0: CTRL-EVENT-EAP-STARTED EAP authentication started
    wlp4s0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25
    wlp4s0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=2 subject='/C=US/ST=UT/L=Salt Lake City/O=The USERTRUST Network/OU=http://www.usertrust.com/CN=UTN-USERFirst-Hardware'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=1 subject='/C=NL/O=TERENA/CN=TERENA SSL CA'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=0 subject='/OU=Domain Control Validated/CN=radius1.eduroam.cuni.cz'
    EAP-MSCHAPV2: Authentication succeeded
    EAP-TLV: TLV Result - Success - EAP-TLV/Phase2 Completed
    wlp4s0: CTRL-EVENT-EAP-SUCCESS EAP authentication completed successfully
    wlp4s0: WPA: Key negotiation completed with 00:1b:2b:a5:30:80 [PTK=CCMP GTK=TKIP]
    wlp4s0: CTRL-EVENT-CONNECTED - Connection to 00:1b:2b:a5:30:80 completed [id=0 id_str=]
    wlp4s0: WPA: Group rekeying completed with 00:1b:2b:a5:30:80 [GTK=TKIP]
    It still shows up ioctl[SIOCSIWFREQ]: Operation not supported but I could live with that.
    Here is a bit longer -dd output from wpa (if someone would like to dig through that)
    wpa_supplicant v2.0
    Successfully initialized wpa_supplicant
    Initializing interface 'wlp4s0' conf '/etc/wpa_supplicant/eduroam_wpa.conf' driver 'default' ctrl_interface 'N/A' bridge 'N/A'
    Configuration file '/etc/wpa_supplicant/eduroam_wpa.conf' -> '/etc/wpa_supplicant/eduroam_wpa.conf'
    Reading configuration file '/etc/wpa_supplicant/eduroam_wpa.conf'
    ctrl_interface='/var/run/wpa_supplicant'
    ctrl_interface_group='0'
    eapol_version=1
    ap_scan=1
    fast_reauth=0
    Line: 8 - start of a new network block
    priority=5 (0x5)
    ssid - hexdump_ascii(len=7):
    65 64 75 72 6f 61 6d eduroam
    scan_ssid=1 (0x1)
    proto: 0x3
    key_mgmt: 0x1
    eap methods - hexdump(len=16): 00 00 00 00 19 00 00 00 00 00 00 00 00 00 00 00
    identity - hexdump_ascii(len=16):
    ----------------I've removed my login-------------------
    password - hexdump_ascii(len=8): [REMOVED]
    ca_cert - hexdump_ascii(len=46):
    2f 65 74 63 2f 6e 65 74 63 74 6c 2f 55 54 4e 5f /etc/netctl/UTN_
    55 53 45 52 46 69 72 73 74 5f 48 61 72 64 77 61 USERFirst_Hardwa
    72 65 5f 52 6f 6f 74 5f 43 41 2e 70 65 6d re_Root_CA.pem
    altsubject_match - hexdump_ascii(len=55):
    44 4e 53 3a 72 61 64 69 75 73 31 2e 65 64 75 72 DNS:radius1.edur
    6f 61 6d 2e 63 75 6e 69 2e 63 7a 3b 44 4e 53 3a oam.cuni.cz;DNS:
    72 61 64 69 75 73 32 2e 65 64 75 72 6f 61 6d 2e radius2.eduroam.
    63 75 6e 69 2e 63 7a cuni.cz
    phase1 - hexdump_ascii(len=11):
    70 65 61 70 6c 61 62 65 6c 3d 30 peaplabel=0
    phase2 - hexdump_ascii(len=13):
    61 75 74 68 3d 4d 53 43 48 41 50 56 32 auth=MSCHAPV2
    Priority group 5
    id=0 ssid='eduroam'
    WEXT: cfg80211-based driver detected
    wext: interface wlp4s0 phy: phy0
    rfkill: initial event: idx=0 type=1 op=0 soft=0 hard=0
    rfkill: initial event: idx=1 type=2 op=0 soft=0 hard=0
    SIOCGIWRANGE: WE(compiled)=22 WE(source)=21 enc_capa=0xf
    capabilities: key_mgmt 0xf enc 0x1f flags 0x0
    netlink: Operstate: linkmode=1, operstate=5
    wlp4s0: Own MAC address: 80:56:f2:e4:53:0d
    wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_countermeasures
    wlp4s0: RSN: flushing PMKID list in the driver
    wlp4s0: Setting scan request: 0 sec 100000 usec
    WPS: Set UUID for interface wlp4s0
    WPS: UUID based on MAC address - hexdump(len=16): b1 76 7d 6f ec a8 53 a8 aa 1e d9 30 60 23 4e 20
    EAPOL: SUPP_PAE entering state DISCONNECTED
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: KEY_RX entering state NO_KEY_RECEIVE
    EAPOL: SUPP_BE entering state INITIALIZE
    EAP: EAP entering state DISABLED
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: Supplicant port status: Unauthorized
    ctrl_interface_group=0
    wlp4s0: Added interface wlp4s0
    wlp4s0: State: DISCONNECTED -> DISCONNECTED
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    RTM_NEWLINK: operstate=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    RTM_NEWLINK: operstate=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b06 len=12
    RTM_NEWLINK: operstate=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b1a len=16
    wlp4s0: State: DISCONNECTED -> SCANNING
    Scan SSID - hexdump_ascii(len=7):
    65 64 75 72 6f 61 6d eduroam
    wlp4s0: Starting AP scan for wildcard SSID (Interleave with specific)
    Scan requested (ret=0) - scan timeout 10 seconds
    EAPOL: disable timer tick
    EAPOL: Supplicant port status: Unauthorized
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b19 len=16
    wlp4s0: Event SCAN_RESULTS (3) received
    Received 3628 bytes of scan results (8 BSSes)
    wlp4s0: BSS: Start scan result update 1
    wlp4s0: BSS: Add new id 0 BSSID 00:1b:2b:a5:30:80 SSID 'eduroam'
    wlp4s0: BSS: Add new id 1 BSSID 00:1b:2b:a5:30:81 SSID 'psk.troja.mff.cuni.cz'
    wlp4s0: BSS: Add new id 2 BSSID 00:1b:2b:a5:30:82 SSID 'troja.mff.cuni.cz'
    wlp4s0: BSS: Add new id 3 BSSID 00:1a:30:e6:40:60 SSID 'eduroam'
    wlp4s0: BSS: Add new id 4 BSSID 00:1b:2b:a5:50:72 SSID 'troja.mff.cuni.cz'
    wlp4s0: BSS: Add new id 5 BSSID 00:1b:2b:a5:50:71 SSID 'psk.troja.mff.cuni.cz'
    wlp4s0: BSS: Add new id 6 BSSID 00:1b:2b:a5:50:70 SSID 'eduroam'
    wlp4s0: BSS: Add new id 7 BSSID d4:ca:6d:a4:c7:1b SSID 'CSADCL_FREE'
    BSS: last_scan_res_used=8/32 last_scan_full=0
    wlp4s0: New scan results available
    wlp4s0: Selecting BSS from priority group 5
    wlp4s0: 0: 00:1b:2b:a5:30:80 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-58
    wlp4s0: selected based on RSN IE
    wlp4s0: selected BSS 00:1b:2b:a5:30:80 ssid='eduroam'
    wlp4s0: Request association: reassociate: 0 selected: 00:1b:2b:a5:30:80 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
    wlp4s0: Trying to associate with 00:1b:2b:a5:30:80 (SSID='eduroam' freq=2437 MHz)
    wlp4s0: Cancelling scan request
    wlp4s0: WPA: clearing own WPA/RSN IE
    wlp4s0: Automatic auth_alg selection: 0x1
    RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0
    RSN: Search for BSSID 00:1b:2b:a5:30:80
    RSN: No PMKSA cache entry found
    wlp4s0: RSN: using IEEE 802.11i/D9.0
    wlp4s0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 1 proto 2
    WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 01 28 00
    WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 28 00
    wlp4s0: WPA: using GTK TKIP
    wlp4s0: WPA: using PTK CCMP
    wlp4s0: WPA: using KEY_MGMT 802.1X
    WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 00 00
    wlp4s0: No keys have been configured - skip key clearing
    wlp4s0: State: SCANNING -> ASSOCIATING
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    Limit connection to BSSID 00:1b:2b:a5:30:80 freq=2437 MHz based on scan results (bssid_set=0)
    wlp4s0: set_disable_max_amsdu: -1
    wlp4s0: set_ampdu_factor: -1
    wlp4s0: set_ampdu_density: -1
    wlp4s0: set_disable_ht40: 0
    wlp4s0: set_disable_sgi: 0
    wpa_driver_wext_associate
    wpa_driver_wext_set_drop_unencrypted
    wpa_driver_wext_set_psk
    ioctl[SIOCSIWFREQ]: Operation not supported
    wlp4s0: Association request to the driver failed
    wlp4s0: Setting authentication timeout: 5 sec 0 usec
    EAPOL: External notification - EAP success=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - EAP fail=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portControl=Auto
    EAPOL: Supplicant port status: Unauthorized
    RSN: Ignored PMKID candidate without preauth flag
    RSN: Ignored PMKID candidate without preauth flag
    RSN: Ignored PMKID candidate without preauth flag
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b1a len=16
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b06 len=12
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b1a len=23
    wlp4s0: RX EAPOL from 00:1b:2b:a5:30:80
    RX EAPOL - hexdump(len=49): 01 00 00 2d 01 01 00 2d 01 00 6e 65 74 77 6f 72 6b 69 64 3d 65 64 75 72 6f 61 6d 2c 6e 61 73 69 64 3d 61 6f 70 31 73 7a 2c 70 6f 72 74 69 64 3d 30
    wlp4s0: Not associated - Delay processing of received EAPOL frame (state=ASSOCIATING bssid=00:00:00:00:00:00)
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8c07 len=111
    AssocReq IE wireless event - hexdump(len=95): 00 07 65 64 75 72 6f 61 6d 01 08 82 84 8b 96 24 30 48 6c 21 02 0b 14 24 02 01 0e 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 0c 00 32 04 0c 12 18 60 7f 08 00 00 00 00 00 00 00 40 dd 09 00 10 18 02 00 00 00 00 00 dd 07 00 50 f2 02 00 01 00 00 00 00 00 00 00 00 00 00 00
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8c08 len=64
    AssocResp IE wireless event - hexdump(len=48): 01 08 82 84 8b 96 24 30 48 6c 32 04 0c 12 18 60 dd 18 00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 00 00 00 00 00 00
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b15 len=24
    Wireless event: new AP: 00:1b:2b:a5:30:80
    wlp4s0: Event ASSOCINFO (4) received
    wlp4s0: Association info event
    req_ies - hexdump(len=95): 00 07 65 64 75 72 6f 61 6d 01 08 82 84 8b 96 24 30 48 6c 21 02 0b 14 24 02 01 0e 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 0c 00 32 04 0c 12 18 60 7f 08 00 00 00 00 00 00 00 40 dd 09 00 10 18 02 00 00 00 00 00 dd 07 00 50 f2 02 00 01 00 00 00 00 00 00 00 00 00 00 00
    resp_ies - hexdump(len=48): 01 08 82 84 8b 96 24 30 48 6c 32 04 0c 12 18 60 dd 18 00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 00 00 00 00 00 00
    WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 0c 00
    wlp4s0: Event ASSOC (0) received
    wlp4s0: State: ASSOCIATING -> ASSOCIATED
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    wlp4s0: Associated to a new BSS: BSSID=00:1b:2b:a5:30:80
    wlp4s0: No keys have been configured - skip key clearing
    wlp4s0: Associated with 00:1b:2b:a5:30:80
    wlp4s0: WPA: Association event - clear replay counter
    wlp4s0: WPA: Clear old PTK
    EAPOL: External notification - portEnabled=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portValid=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portEnabled=1
    EAPOL: SUPP_PAE entering state CONNECTING
    EAPOL: enable timer tick
    EAPOL: SUPP_BE entering state IDLE
    EAP: EAP entering state INITIALIZE
    EAP: EAP entering state IDLE
    wlp4s0: Setting authentication timeout: 10 sec 0 usec
    wlp4s0: Cancelling scan request
    wlp4s0: Process pending EAPOL frame that was received just before association notification
    wlp4s0: RX EAPOL from 00:1b:2b:a5:30:80
    RX EAPOL - hexdump(len=49): 01 00 00 2d 01 01 00 2d 01 00 6e 65 74 77 6f 72 6b 69 64 3d 65 64 75 72 6f 61 6d 2c 6e 61 73 69 64 3d 61 6f 70 31 73 7a 2c 70 6f 72 74 69 64 3d 30
    wlp4s0: Setting authentication timeout: 70 sec 0 usec
    EAPOL: Received EAP-Packet frame
    EAPOL: SUPP_PAE entering state RESTART
    EAP: EAP entering state INITIALIZE
    EAP: EAP entering state IDLE
    EAPOL: SUPP_PAE entering state AUTHENTICATING
    EAPOL: SUPP_BE entering state REQUEST
    EAPOL: getSuppRsp
    EAP: EAP entering state RECEIVED
    EAP: Received EAP-Request id=1 method=1 vendor=0 vendorMethod=0
    EAP: EAP entering state IDENTITY
    wlp4s0: CTRL-EVENT-EAP-STARTED EAP authentication started
    EAP: EAP-Request Identity data - hexdump_ascii(len=40):
    00 6e 65 74 77 6f 72 6b 69 64 3d 65 64 75 72 6f _networkid=eduro
    61 6d 2c 6e 61 73 69 64 3d 61 6f 70 31 73 7a 2c am,nasid=aop1sz,
    70 6f 72 74 69 64 3d 30 portid=0
    EAP: using real identity - hexdump_ascii(len=16):
    ----------------I've removed my login-------------------
    EAP: EAP entering state SEND_RESPONSE
    EAP: EAP entering state IDLE
    EAPOL: SUPP_BE entering state RESPONSE
    EAPOL: txSuppRsp
    TX EAPOL: dst=00:1b:2b:a5:30:80
    TX EAPOL - hexdump(len=25): 01 00 00 15 02 01 00 15 01 31 39 38 33 30 36 36 38 40 63 75 6e 69 2e 63 7a
    EAPOL: SUPP_BE entering state RECEIVE
    wlp4s0: RX EAPOL from 00:1b:2b:a5:30:80
    RX EAPOL - hexdump(len=46): 01 00 00 06 01 02 00 06 19 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    EAPOL: Received EAP-Packet frame
    EAPOL: SUPP_BE entering state REQUEST
    EAPOL: getSuppRsp
    EAP: EAP entering state RECEIVED
    EAP: Received EAP-Request id=2 method=25 vendor=0 vendorMethod=0
    EAP: EAP entering state GET_METHOD
    wlp4s0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25
    EAP: Status notification: accept proposed method (param=PEAP)
    EAP: Initialize selected EAP method: vendor 0 method 25 (PEAP)
    TLS: Phase2 EAP types - hexdump(len=8): 00 00 00 00 1a 00 00 00
    TLS: using phase1 config options
    TLS: Trusted root certificate(s) loaded
    wlp4s0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected
    EAP: EAP entering state METHOD
    SSL: Received packet(len=6) - Flags 0x20
    EAP-PEAP: Start (server ver=0, own ver=1)
    EAP-PEAP: Using PEAP version 0
    SSL: (where=0x10 ret=0x1)
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:before/connect initialization
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:SSLv3 write client hello A
    SSL: (where=0x1002 ret=0xffffffff)
    SSL: SSL_connect:error in SSLv3 read server hello A
    SSL: SSL_connect - want more data
    SSL: 223 bytes pending from ssl_out
    SSL: 223 bytes left to be sent out (of total 223 bytes)
    EAP: method process -> ignore=FALSE methodState=MAY_CONT decision=FAIL
    EAP: EAP entering state SEND_RESPONSE
    EAP: EAP entering state IDLE
    EAPOL: SUPP_BE entering state RESPONSE
    EAPOL: txSuppRsp
    TX EAPOL: dst=00:1b:2b:a5:30:80
    TX EAPOL - hexdump(len=237): 01 00 00 e9 02 02 00 e9 19 80 00 00 00 df 16 03 01 00 da 01 00 00 d6 03 01 80 b1 74 88 b4 99 b0 22 74 d4 b9 87 79 1f 8a f0 d4 b8 95 0f 2b 91 0f 72 1e 24 bf 67 2a 83 59 1a 00 00 68 c0 14 c0 0a c0 22 c0 21 00 39 00 38 00 88 00 87 c0 0f c0 05 00 35 00 84 c0 12 c0 08 c0 1c c0 1b 00 16 00 13 c0 0d c0 03 00 0a c0 13 c0 09 c0 1f c0 1e 00 33 00 32 00 9a 00 99 00 45 00 44 c0 0e c0 04 00 2f 00 96 00 41 00 07 c0 11 c0 07 c0 0c c0 02 00 05 00 04 00 15 00 12 00 09 00 14 00 11 00 08 00 06 00 03 00 ff 01 00 00 45 00 0b 00 04 03 00 01 02 00 0a 00 34 00 32 00 0e 00 0d 00 19 00 0b 00 0c 00 18 00 09 00 0a 00 16 00 17 00 08 00 06 00 07 00 14 00 15 00 04 00 05 00 12 00 13 00 01 00 02 00 03 00 0f 00 10 00 11 00 0f 00 01 01
    EAPOL: SUPP_BE entering state RECEIVE
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8c07 len=111
    AssocReq IE wireless event - hexdump(len=95): 00 07 65 64 75 72 6f 61 6d 01 08 82 84 8b 96 24 30 48 6c 21 02 0b 14 24 02 01 0e 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 0c 00 32 04 0c 12 18 60 7f 08 00 00 00 00 00 00 00 40 dd 09 00 10 18 02 00 00 00 00 00 dd 07 00 50 f2 02 00 01 00 00 00 00 00 00 00 00 00 00 00
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8c08 len=64
    AssocResp IE wireless event - hexdump(len=48): 01 08 82 84 8b 96 24 30 48 6c 32 04 0c 12 18 60 dd 18 00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 00 00 00 00 00 00
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b15 len=24
    Wireless event: new AP: 00:1b:2b:a5:30:80
    wlp4s0: Event ASSOCINFO (4) received
    wlp4s0: Association info event
    req_ies - hexdump(len=95): 00 07 65 64 75 72 6f 61 6d 01 08 82 84 8b 96 24 30 48 6c 21 02 0b 14 24 02 01 0e 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 0c 00 32 04 0c 12 18 60 7f 08 00 00 00 00 00 00 00 40 dd 09 00 10 18 02 00 00 00 00 00 dd 07 00 50 f2 02 00 01 00 00 00 00 00 00 00 00 00 00 00
    resp_ies - hexdump(len=48): 01 08 82 84 8b 96 24 30 48 6c 32 04 0c 12 18 60 dd 18 00 50 f2 02 01 01 84 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 00 00 00 00 00 00
    WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 0c 00
    wlp4s0: Event ASSOC (0) received
    wlp4s0: State: ASSOCIATED -> ASSOCIATED
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    wlp4s0: Associated with 00:1b:2b:a5:30:80
    wlp4s0: WPA: Association event - clear replay counter
    wlp4s0: WPA: Clear old PTK
    EAPOL: External notification - portEnabled=0
    EAPOL: SUPP_PAE entering state DISCONNECTED
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: SUPP_BE entering state INITIALIZE
    EAP: EAP entering state DISABLED
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portValid=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portEnabled=1
    EAPOL: SUPP_PAE entering state CONNECTING
    EAPOL: SUPP_BE entering state IDLE
    EAP: EAP entering state INITIALIZE
    EAP: deinitialize previously used EAP method (25, PEAP) at INITIALIZE
    ENGINE: engine deinit
    EAP: EAP entering state IDLE
    wlp4s0: Setting authentication timeout: 10 sec 0 usec
    wlp4s0: Cancelling scan request
    wlp4s0: RX EAPOL from 00:1b:2b:a5:30:80
    RX EAPOL - hexdump(len=1038): 01 00 04 0a 01 03 04 0a 19 c0 00 00 09 a7 16 03 01 00 51 02 00 00 4d 03 01 52 d9 2a 50 99 ce a6 89 f6 1c 95 44 c3 23 d9 aa dc 5f d5 e3 60 42 a9 32 32 bb f1 d5 b9 d2 5f f6 20 b6 56 ea 89 24 f0 93 cb 36 9a ca 88 b4 e1 07 84 4c e2 e2 0a 0f 6d 4f 4c 38 3e 53 bc 8e 42 af 33 00 35 00 00 05 ff 01 00 01 00 16 03 01 09 43 0b 00 09 3f 00 09 3c 00 04 9a 30 82 04 96 30 82 03 7e a0 03 02 01 02 02 11 00 91 2e 01 7f 78 f8 b5 1f 5e 7b a2 4a b9 12 dc e4 30 0d 06 09 2a 86 48 86 f7 0d 01 01 05 05 00 30 36 31 0b 30 09 06 03 55 04 06 13 02 4e 4c 31 0f 30 0d 06 03 55 04 0a 13 06 54 45 52 45 4e 41 31 16 30 14 06 03 55 04 03 13 0d 54 45 52 45 4e 41 20 53 53 4c 20 43 41 30 1e 17 0d 31 33 30 39 32 34 30 30 30 30 30 30 5a 17 0d 31 36 30 39 32 33 32 33 35 39 35 39 5a 30 45 31 21 30 1f 06 03 55 04 0b 13 18 44 6f 6d 61 69 6e 20 43 6f 6e 74 72 6f 6c 20 56 61 6c 69 64 61 74 65 64 31 20 30 1e 06 03 55 04 03 13 17 72 61 64 69 75 73 31 2e 65 64 75 72 6f 61 6d 2e 63 75 6e 69 2e 63 7a 30 82 01 22 30 0d 06 09 2a 86 48 86 f7 0d 01 01 01 05 00 03 82 01 0f 00 30 82 01 0a 02 82 01 01 00 b5 4f 36 a8 e3 09 5f 0d 59 f1 56 fe 5b c3 71 f6 36 ac 78 66 05 e6 cf 72 7e 6b 5d b6 d1 38 11 3c c0 c1 42 42 2a 95 18 12 91 77 3a 83 5f 32 90 27 46 21 f1 1b 09 45 57 0d 4c 16 99 76 c7 18 8f ec 40 dd 55 48 a8 64 6e 8b 2f 5b 76 90 c9 3a 97 6b d7 62 66 4e f5 7c 0d 67 1a 02 b7 e1 59 44 ce d4 79 c1 58 44 ef b2 1d 96 64 52 0f 8c 19 80 60 20 57 e9 1b 77 dd df 2a 9e 50 1d c8 92 33 2a 80 ba 5e ac 09 d1 af 50 4c 19 ce c9 1b 4a fc 7e 7d 4b 55 17 b5 bc d6 d7 e6 77 f7 25 c9 0a 93 af 6e 5a 04 d0 7d 8c 8e 17 ae 7d ed 95 85 c2 9f 41 9b 56 89 a2 e3 9f 6c ea a2 fc fe a2 2a b6 66 66 5e 7e 6b 02 bc 8e a3 3b b1 54 31 4c 6c 12 72 f9 4d 6e 7f ec d6 84 45 c2 84 5a 84 37 90 78 61 92 10 7c 0f 97 bf 5f 0d d1 04 8f 4c 99 43 53 42 28 97 68 c3 9b 31 97 eb 5e 6b 8c c9 b0 f0 c7 54 8e ad bd 02 03 01 00 01 a3 82 01 8e 30 82 01 8a 30 1f 06 03 55 1d 23 04 18 30 16 80 14 0c bd 93 68 0c f3 de ab a3 49 6b 2b 37 57 47 ea 90 e3 b9 ed 30 1d 06 03 55 1d 0e 04 16 04 14 93 2d e6 63 20 90 50 bb 1b 70 68 0c 0e e6 ed bc d7 02 4e 67 30 0e 06 03 55 1d 0f 01 01 ff 04 04 03 02 05 a0 30 0c 06 03 55 1d 13 01 01 ff 04 02 30 00 30 1d 06 03 55 1d 25 04 16 30 14 06 08 2b 06 01 05 05 07 03 01 06 08 2b 06 01 05 05 07 03 02 30 22 06 03 55 1d 20 04 1b 30 19 30 0d 06 0b 2b 06 01 04 01 b2 31 01 02 02 1d 30 08 06 06 67 81 0c 01 02 01 30 3a 06 03 55 1d 1f 04 33 30 31 30 2f a0 2d a0 2b 86 29 68 74 74 70 3a 2f 2f 63 72 6c 2e 74 63 73 2e 74 65 72 65 6e 61 2e 6f 72 67 2f 54 45 52 45 4e 41 53 53 4c 43 41 2e 63 72 6c 30 6d 06 08 2b 06 01 05 05 07 01 01 04 61 30 5f 30 35 06 08 2b 06 01 05 05 07 30 02 86 29 68 74 74 70 3a 2f 2f 63 72 74 2e 74 63 73 2e 74 65 72 65 6e 61 2e 6f 72 67 2f 54 45 52 45 4e 41 53 53 4c 43 41 2e 63 72 74 30 26 06 08 2b 06 01 05 05 07 30 01 86 1a 68 74 74 70 3a 2f 2f 6f 63 73 70 2e 74 63 73 2e 74 65 72 65 6e 61 2e 6f 72 67 30 3c 06 03 55 1d 11 04 35 30 33 82 17 72 61 64 69 75 73 31 2e 65 64 75 72 6f 61 6d 2e 63 75 6e 69 2e 63 7a 82 18 6e 61 73 2d 72 75 6b 32 2e 65 64 75 72 6f 61 6d 2e 63 75 6e 69 2e 63 7a 30 0d 06 09 2a 86 48 86 f7 0d 01 01 05 05 00 03 82 01 01 00 04
    wlp4s0: Setting authentication timeout: 70 sec 0 usec
    EAPOL: Received EAP-Packet frame
    EAPOL: SUPP_PAE entering state RESTART
    EAP: EAP entering state INITIALIZE
    EAP: EAP entering state IDLE
    EAPOL: SUPP_PAE entering state AUTHENTICATING
    EAPOL: SUPP_BE entering state REQUEST
    EAPOL: getSuppRsp
    EAP: EAP entering state RECEIVED
    EAP: Received EAP-Request id=3 method=25 vendor=0 vendorMethod=0
    EAP: EAP entering state GET_METHOD
    wlp4s0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25
    EAP: Status notification: accept proposed method (param=PEAP)
    EAP: Initialize selected EAP method: vendor 0 method 25 (PEAP)
    TLS: Phase2 EAP types - hexdump(len=8): 00 00 00 00 1a 00 00 00
    TLS: using phase1 config options
    TLS: Trusted root certificate(s) loaded
    wlp4s0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected
    EAP: EAP entering state METHOD
    SSL: Received packet(len=1034) - Flags 0xc0
    SSL: TLS Message Length: 2471
    SSL: Need 1447 bytes more input data
    SSL: Building ACK (type=25 id=3 ver=1)
    EAP: method process -> ignore=FALSE methodState=MAY_CONT decision=FAIL
    EAP: EAP entering state SEND_RESPONSE
    EAP: EAP entering state IDLE
    EAPOL: SUPP_BE entering state RESPONSE
    EAPOL: txSuppRsp
    TX EAPOL: dst=00:1b:2b:a5:30:80
    TX EAPOL - hexdump(len=10): 01 00 00 06 02 03 00 06 19 01
    EAPOL: SUPP_BE entering state RECEIVE
    wlp4s0: RX EAPOL from 00:1b:2b:a5:30:80
    RX EAPOL - hexdump(len=1034): 01 00 04 06 01 04 04 06 19 40 16 41 c4 79 40 3b 63 6a f4 b2 28 3d 9a 9a 9d 44 f5 95 fc 7c f3 32 02 2c 7a b0 5b dd 9d c4 b0 ae 59 56 9d f2 9d 0d a1 a0 80 f5 a4 9c 43 9a 66 02 06 d4 ad 75 5c 9a 45 35 11 fd 18 9b 39 0c ac d0 e3 06 b8 1e 18 9c d4 29 59 78 91 d6 f7 c2 f2 0e 36 25 58 9a 74 c6 40 37 ca f9 8f 96 ec 59 f2 38 b4 8a 27 67 34 bb b8 43 f5 a5 2b b0 12 65 5a 82 40 f2 37 f0 22 e0 39 f1 d6 de 98 0e ae 57 28 b5 b1 95 be 3d d5 17 dc 9d dd e7 a1 1b a0 ab 34 7e be 28 f8 7a b1 75 31 a7 9e 28 79 14 4f 34 5e 27 9f 38 15 c8 df ce 65 ec 74 72 70 45 92 58 33 3b 6f 01 a0 11 1b 31 5a a0 c8 f8 5b 1a d9 db 24 e7 1c 13 6a 41 1b ce 4b a2 39 07 22 fe db 3f 8d ff b9 27 a4 56 94 d6 f5 63 64 65 5f 92 ad 20 53 2e 28 12 01 97 71 22 c1 ee 73 36 1c 1d 41 a8 35 ce a8 0f fd 55 b7 f6 aa fc e1 d6 21 19 69 39 8a 00 04 9c 30 82 04 98 30 82 03 80 a0 03 02 01 02 02 10 4b c8 14 03 2f 07 fa 6a a4 f0 da 29 df 61 79 ba 30 0d 06 09 2a 86 48 86 f7 0d 01 01 05 05 00 30 81 97 31 0b 30 09 06 03 55 04 06 13 02 55 53 31 0b 30 09 06 03 55 04 08 13 02 55 54 31 17 30 15 06 03 55 04 07 13 0e 53 61 6c 74 20 4c 61 6b 65 20 43 69 74 79 31 1e 30 1c 06 03 55 04 0a 13 15 54 68 65 20 55 53 45 52 54 52 55 53 54 20 4e 65 74 77 6f 72 6b 31 21 30 1f 06 03 55 04 0b 13 18 68 74 74 70 3a 2f 2f 77 77 77 2e 75 73 65 72 74 72 75 73 74 2e 63 6f 6d 31 1f 30 1d 06 03 55 04 03 13 16 55 54 4e 2d 55 53 45 52 46 69 72 73 74 2d 48 61 72 64 77 61 72 65 30 1e 17 0d 30 39 30 35 31 38 30 30 30 30 30 30 5a 17 0d 32 30 30 35 33 30 31 30 34 38 33 38 5a 30 36 31 0b 30 09 06 03 55 04 06 13 02 4e 4c 31 0f 30 0d 06 03 55 04 0a 13 06 54 45 52 45 4e 41 31 16 30 14 06 03 55 04 03 13 0d 54 45 52 45 4e 41 20 53 53 4c 20 43 41 30 82 01 22 30 0d 06 09 2a 86 48 86 f7 0d 01 01 01 05 00 03 82 01 0f 00 30 82 01 0a 02 82 01 01 00 c3 e3 48 c4 2f 5c c1 cb a9 99 fd 1b a2 83 5d 8a 3d ad 3a d0 e2 a4 43 1f 4d 0e fe 35 25 30 a5 69 1b c4 e8 e5 c1 8f 54 7e e1 6a a2 9a 5c 5c de 3d fc 02 ce 96 b8 5f 8f 83 5b cc 60 40 90 f8 e4 b6 3a 25 9c 5f 14 51 ec b1 e7 af 9e 50 a1 31 55 c7 02 bd ac 52 8a 7f 35 8e 82 fa 84 ad 15 fe a2 7f 83 10 3a 55 53 94 2c 01 16 74 94 54 63 28 a3 f2 5b 29 3d 94 88 80 20 e2 14 59 21 19 b4 a4 98 e1 60 e6 f2 eb a2 80 83 43 e0 ad 68 f3 79 19 8b 68 43 51 3f 8a 9b 41 85 0c 35 8c 5d b5 f1 b6 e5 a7 c3 83 b5 6b 23 6f d4 a5 eb 50 e5 94 f1 4a 5f ee 27 4b 14 12 15 24 4c 0d cf 62 8d b7 00 21 ad 3a 32 0f 58 0b 5f 1e 9b d1 df 9d 8e a9 19 35 50 2f 41 a9 ad 3b c6 e0 45 b2 53 39 7f 21 bf 22 1a 87 5c 34 ae 52 6f 07 7d a2 0b 4e 9f 2b 79 a6 7d 13 dd f5 7f 83 7c 2f 5a 5d 77 78 78 91 a0 14 bf 7d 02 03 01 00 01 a3 82 01 3e 30 82 01 3a 30 1f 06 03 55 1d 23 04 18 30 16 80 14 a1 72 5f 26 1b 28 98 43 95 5d 07 37 d5 85 96 9d 4b d2 c3 45 30 1d 06 03 55 1d 0e 04 16 04 14 0c bd 93 68 0c f3 de ab a3 49 6b 2b 37 57 47 ea 90 e3 b9 ed 30 0e 06 03 55 1d 0f 01 01 ff 04 04 03 02 01 06 30 12 06 03 55 1d 13 01 01 ff 04 08 30 06 01 01 ff 02 01 00 30 18 06 03 55 1d 20 04 11 30 0f 30 0d 06 0b 2b 06 01 04 01 b2 31 01 02 02 1d 30 44 06 03 55 1d 1f 04 3d 30 3b 30 39 a0 37 a0 35 86 33 68 74 74 70 3a 2f 2f 63 72 6c 2e 75 73 65 72 74 72 75 73 74 2e 63 6f 6d 2f 55 54 4e 2d 55 53
    EAPOL: Received EAP-Packet frame
    EAPOL: SUPP_BE entering state REQUEST
    EAPOL: getSuppRsp
    EAP: EAP entering state RECEIVED
    EAP: Received EAP-Request id=4 method=25 vendor=0 vendorMethod=0
    EAP: EAP entering state METHOD
    SSL: Received packet(len=1030) - Flags 0x40
    SSL: Need 423 bytes more input data
    SSL: Building ACK (type=25 id=4 ver=1)
    EAP: method process -> ignore=FALSE methodState=MAY_CONT decision=FAIL
    EAP: EAP entering state SEND_RESPONSE
    EAP: EAP entering state IDLE
    EAPOL: SUPP_BE entering state RESPONSE
    EAPOL: txSuppRsp
    TX EAPOL: dst=00:1b:2b:a5:30:80
    TX EAPOL - hexdump(len=10): 01 00 00 06 02 04 00 06 19 01
    EAPOL: SUPP_BE entering state RECEIVE
    wlp4s0: RX EAPOL from 00:1b:2b:a5:30:80
    RX EAPOL - hexdump(len=433): 01 00 01 ad 01 05 01 ad 19 00 45 52 46 69 72 73 74 2d 48 61 72 64 77 61 72 65 2e 63 72 6c 30 74 06 08 2b 06 01 05 05 07 01 01 04 68 30 66 30 3d 06 08 2b 06 01 05 05 07 30 02 86 31 68 74 74 70 3a 2f 2f 63 72 74 2e 75 73 65 72 74 72 75 73 74 2e 63 6f 6d 2f 55 54 4e 41 64 64 54 72 75 73 74 53 65 72 76 65 72 5f 43 41 2e 63 72 74 30 25 06 08 2b 06 01 05 05 07 30 01 86 19 68 74 74 70 3a 2f 2f 6f 63 73 70 2e 75 73 65 72 74 72 75 73 74 2e 63 6f 6d 30 0d 06 09 2a 86 48 86 f7 0d 01 01 05 05 00 03 82 01 01 00 4e 23 ee 48 9c f6 85 8b 71 c4 0a 6e 73 93 72 c0 3a 8e 80 8a d9 b3 ca b2 d4 01 9c 28 cf f2 5c 0e 21 44 93 0b b6 1a 21 e3 98 01 94 0e 67 49 81 1e be 3d 0d 4e 60 da ef a0 31 4e 95 ef f3 dd 7a 5a 82 20 43 b6 a1 63 43 b3 50 69 43 62 4b 56 62 b0 34 8a b9 13 43 59 93 ec 14 79 88 f3 48 93 e8 9d c9 fa 87 72 0c 6b 56 a0 c3 15 8d 68 a5 87 1f 71 2d e6 5a 6d 3c 69 71 40 04 55 dc a0 43 94 20 45 38 78 d7 bd 8a d8 39 c6 df 09 b7 5a 9a a9 03 b8 28 10 78 cd bf 01 1b 5a 11 3e 38 f4 d8 1b 34 79 cf 33 d2 01 fd ac 98 cd 6d 47 11 90 4c bb b9 5b d8 70 e7 d5 af b6 cc c4 86 e6 75 c0 9e 29 b6 2b 0f 2a a5 69 02 0d e3 e9 a2 b4 5d c0 f3 ce 2c 6a 85 38 76 61 c6 49 82 ab 51 b3 82 a6 b9 41 98 28 98 fb 6b fe 8a 16 ff 31 7e 54 47 a8 3c dc 43 26 a9 9b 05 b7 9e c0 34 43 91 30 d4 32 c3 11 5a e1 16 03 01 00 04 0e 00 00 00
    EAPOL: Received EAP-Packet frame
    EAPOL: SUPP_BE entering state REQUEST
    EAPOL: getSuppRsp
    EAP: EAP entering state RECEIVED
    EAP: Received EAP-Request id=5 method=25 vendor=0 vendorMethod=0
    EAP: EAP entering state METHOD
    SSL: Received packet(len=429) - Flags 0x00
    SSL: (where=0x10 ret=0x1)
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:before/connect initialization
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:SSLv3 write client hello A
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:SSLv3 read server hello A
    TLS: tls_verify_cb - preverify_ok=1 err=0 (ok) ca_cert_verify=1 depth=2 buf='/C=US/ST=UT/L=Salt Lake City/O=The USERTRUST Network/OU=http://www.usertrust.com/CN=UTN-USERFirst-Hardware'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=2 subject='/C=US/ST=UT/L=Salt Lake City/O=The USERTRUST Network/OU=http://www.usertrust.com/CN=UTN-USERFirst-Hardware'
    EAP: Status notification: remote certificate verification (param=success)
    TLS: tls_verify_cb - preverify_ok=1 err=0 (ok) ca_cert_verify=1 depth=1 buf='/C=NL/O=TERENA/CN=TERENA SSL CA'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=1 subject='/C=NL/O=TERENA/CN=TERENA SSL CA'
    EAP: Status notification: remote certificate verification (param=success)
    TLS: tls_verify_cb - preverify_ok=1 err=0 (ok) ca_cert_verify=1 depth=0 buf='/OU=Domain Control Validated/CN=radius1.eduroam.cuni.cz'
    wlp4s0: CTRL-EVENT-EAP-PEER-CERT depth=0 subject='/OU=Domain Control Validated/CN=radius1.eduroam.cuni.cz'
    EAP: Status notification: remote certificate verification (param=success)
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:SSLv3 read server certificate A
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:SSLv3 read server done A
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:SSLv3 write client key exchange A
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:SSLv3 write change cipher spec A
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:SSLv3 write finished A
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:SSLv3 flush data
    SSL: (where=0x1002 ret=0xffffffff)
    SSL: SSL_connect:error in SSLv3 read finished A
    SSL: SSL_connect - want more data
    SSL: 549 bytes pending from ssl_out
    SSL: 549 bytes left to be sent out (of total 549 bytes)
    EAP: method process -> ignore=FALSE methodState=MAY_CONT decision=FAIL
    EAP: EAP entering state SEND_RESPONSE
    EAP: EAP entering state IDLE
    EAPOL: SUPP_BE entering state RESPONSE
    EAPOL: txSuppRsp
    TX EAPOL: dst=00:1b:2b:a5:30:80
    TX EAPOL - hexdump(len=559): 01 00 02 2b 02 05 02 2b 19 01 16 03 01 00 da 01 00 00 d6 03 01 79 a2 50 d9 c6 91 54 b4 2e f5 22 ae 6f 2e cc f9 25 49 91 17 71 c5 0a de 56 45 f6 b5 ed 46 9c 58 00 00 68 c0 14 c0 0a c0 22 c0 21 00 39 00 38 00 88 00 87 c0 0f c0 05 00 35 00 84 c0 12 c0 08 c0 1c c0 1b 00 16 00 13 c0 0d c0 03 00 0a c0 13 c0 09 c0 1f c0 1e 00 33 00 32 00 9a 00 99 00 45 00 44 c0 0e c0 04 00 2f 00 96 00 41 00 07 c0 11 c0 07 c0 0c c0 02 00 05 00 04 00 15 00 12 00 09 00 14 00 11 00 08 00 06 00 03 00 ff 01 00 00 45 00 0b 00 04 03 00 01 02 00 0a 00 34 00 32 00 0e 00 0d 00 19 00 0b 00 0c 00 18 00 09 00 0a 00 16 00 17 00 08 00 06 00 07 00 14 00 15 00 04 00 05 00 12 00 13 00 01 00 02 00 03 00 0f 00 10 00 11 00 0f 00 01 01 16 03 01 01 06 10 00 01 02 01 00 1e b1 20 cb 21 b7 e7 e7 ba 74 c3 73 29 c2 0e 3b 24 6b bc b6 21 b3 64 7a f6 87 9d 22 6f a8 71 e8 7a b0 18 15 1d 62 c9 54 5f c6 f1 62 08 e0 5f 0a be de e2 5d 0c 08 9e 62 72 c4 7b 2c d3 ad bf c7 bf a7 49 47 de c7 2b 4b c2 37 ab c7 32 48 05 c0 30 b5 78 af de dc ed c6 df a4 3e 36 3f 65 88 d4 17 94 6e 0c 28 6f 9b 91 a4 37 cc ba 03 ce 4e 55 22 f8 39 5f 0e 9d a3 9b 4d 1a 43 1f a3 6d 2a a9 11 55 c6 7a 40 3f e4 96 af 5d 5f 47 b9 37 ba c3 c8 d5 29 a2 cf 96 01 d3 ac 33 7a 18 ec fd 7c 4a 97 97 93 e8 24 70 34 00 b9 b5 0d f0 9c 07 27 02 ba 91 eb 0e d3 9e 1d 75 77 aa 92 cc 96 48 e3 0b ab 1d 8c 45 54 53 0e e5 88 07 28 c4 90 af 5d 71 8a 50 8d d9 4d 79 64 35 42 c0 03 c9 e7 42 8e 5f ed 7b 42 12 3a b6 99 75 82 f4 2d 8d 93 bd 9d 1d f2 c8 45 32 bb c4 98 da 53 05 7c ba 01 35 a5 97 14 03 01 00 01 01 16 03 01 00 30 59 8e 71 99 c9 50 a0 a7 7f fe 0d 85 e3 88 62 48 53 61 8b 86 e7 52 6f 53 29 95 14 1c c7 dd 9b 6f 5d 78 ca 3a cd 68 51 4f 6f 54 42 43 9a 17 bd 5f
    EAPOL: SUPP_BE entering state RECEIVE
    EAPOL: startWhen --> 0
    wlp4s0: RX EAPOL from 00:1b:2b:a5:30:80
    RX EAPOL - hexdump(len=46): 01 00 00 04 04 05 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    EAPOL: Received EAP-Packet frame
    EAPOL: SUPP_BE entering state REQUEST
    EAPOL: getSuppRsp
    EAP: EAP entering state RECEIVED
    EAP: Received EAP-Failure
    EAP: Status notification: completion (param=failure)
    EAP: EAP entering state FAILURE
    wlp4s0: CTRL-EVENT-EAP-FAILURE EAP authentication failed
    EAPOL: SUPP_PAE entering state HELD
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: SUPP_BE entering state RECEIVE
    EAPOL: SUPP_BE entering state FAIL
    EAPOL: SUPP_BE entering state IDLE
    EAPOL authentication completed unsuccessfully
    wlp4s0: Setting authentication timeout: 2 sec 0 usec
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b15 len=24
    Wireless event: new AP: 00:00:00:00:00:00
    wlp4s0: Event DISASSOC (1) received
    wlp4s0: Disassociation notification
    wlp4s0: CTRL-EVENT-DISCONNECTED bssid=00:1b:2b:a5:30:80 reason=0
    wlp4s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="eduroam" auth_failures=1 duration=10
    wlp4s0: Auto connect enabled: try to reconnect (wps=0 wpa_state=6)
    wlp4s0: Setting scan request: 0 sec 100000 usec
    Added BSSID 00:1b:2b:a5:30:80 into blacklist
    wlp4s0: Another BSS in this ESS has been seen; try it next
    BSSID 00:1b:2b:a5:30:80 blacklist count incremented to 2
    wlp4s0: Blacklist count 1 --> request scan in 100 ms
    wlp4s0: Not rescheduling scan to ensure that specific SSID scans occur
    wlp4s0: Disconnect event - remove keys
    wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
    wlp4s0: State: ASSOCIATED -> DISCONNECTED
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: SUPP_PAE entering state DISCONNECTED
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: SUPP_BE entering state INITIALIZE
    EAP: EAP entering state DISABLED
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portValid=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: disable timer tick
    EAPOL: Supplicant port status: Unauthorized
    wlp4s0: State: DISCONNECTED -> SCANNING
    Scan SSID - hexdump_ascii(len=7):
    65 64 75 72 6f 61 6d eduroam
    wlp4s0: Starting AP scan for specific SSID: eduroam
    wlp4s0: Optimize scan based on previously generated frequency list
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b19 len=16
    wlp4s0: Event SCAN_RESULTS (3) received
    Received 3643 bytes of scan results (8 BSSes)
    wlp4s0: BSS: Start scan result update 2
    BSS: last_scan_res_used=8/32 last_scan_full=0
    wlp4s0: New scan results available
    wlp4s0: Selecting BSS from priority group 5
    wlp4s0: 0: 00:1b:2b:a5:30:81 ssid='psk.troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-58
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 1: 00:1b:2b:a5:30:82 ssid='troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-59
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 2: 00:1b:2b:a5:30:80 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-61
    wlp4s0: skip - blacklisted (count=2 limit=0)
    wlp4s0: 3: 00:1a:30:e6:40:60 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-81
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 4: 00:1b:2b:a5:50:72 ssid='troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-87
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 5: 00:1b:2b:a5:50:70 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-88
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 6: 00:1b:2b:a5:50:71 ssid='psk.troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-88
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 7: d4:ca:6d:a4:c7:1b ssid='CSADCL_FREE' wpa_ie_len=0 rsn_ie_len=0 caps=0x1 level=-80
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: No APs found - clear blacklist and try again
    Removed BSSID 00:1b:2b:a5:30:80 from blacklist (clear)
    wlp4s0: Selecting BSS from priority group 5
    wlp4s0: 0: 00:1b:2b:a5:30:81 ssid='psk.troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-58
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 1: 00:1b:2b:a5:30:82 ssid='troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-59
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 2: 00:1b:2b:a5:30:80 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-61
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 3: 00:1a:30:e6:40:60 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-81
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 4: 00:1b:2b:a5:50:72 ssid='troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-87
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 5: 00:1b:2b:a5:50:70 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-88
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 6: 00:1b:2b:a5:50:71 ssid='psk.troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-88
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: 7: d4:ca:6d:a4:c7:1b ssid='CSADCL_FREE' wpa_ie_len=0 rsn_ie_len=0 caps=0x1 level=-80
    wlp4s0: skip - disabled temporarily for 9 second(s)
    wlp4s0: No suitable network found
    wlp4s0: Setting scan request: 5 sec 0 usec
    wlp4s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
    wlp4s0: RX EAPOL from 00:1b:2b:a5:30:80
    RX EAPOL - hexdump(len=49): 01 00 00 2d 01 01 00 2d 01 00 6e 65 74 77 6f 72 6b 69 64 3d 65 64 75 72 6f 61 6d 2c 6e 61 73 69 64 3d 61 6f 70 31 73 7a 2c 70 6f 72 74 69 64 3d 30
    wlp4s0: Not associated - Delay processing of received EAPOL frame (state=SCANNING bssid=00:00:00:00:00:00)
    wlp4s0: Starting AP scan for wildcard SSID
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b19 len=16
    wlp4s0: Event SCAN_RESULTS (3) received
    Scan results did not fit - trying larger buffer (8192 bytes)
    Received 4574 bytes of scan results (10 BSSes)
    wlp4s0: BSS: Start scan result update 3
    wlp4s0: BSS: Add new id 8 BSSID 00:1a:30:e6:40:62 SSID 'troja.mff.cuni.cz'
    wlp4s0: BSS: Add new id 9 BSSID 00:1a:30:e6:40:61 SSID 'psk.troja.mff.cuni.cz'
    BSS: last_scan_res_used=10/32 last_scan_full=0
    wlp4s0: New scan results available
    wlp4s0: Selecting BSS from priority group 5
    wlp4s0: 0: 00:1b:2b:a5:30:80 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-55
    wlp4s0: skip - disabled temporarily for 3 second(s)
    wlp4s0: 1: 00:1b:2b:a5:30:82 ssid='troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-55
    wlp4s0: skip - disabled temporarily for 3 second(s)
    wlp4s0: 2: 00:1b:2b:a5:30:81 ssid='psk.troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-55
    wlp4s0: skip - disabled temporarily for 3 second(s)
    wlp4s0: 3: 00:1a:30:e6:40:62 ssid='troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-85
    wlp4s0: skip - disabled temporarily for 3 second(s)
    wlp4s0: 4: 00:1a:30:e6:40:60 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-86
    wlp4s0: skip - disabled temporarily for 3 second(s)
    wlp4s0: 5: 00:1a:30:e6:40:61 ssid='psk.troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-87
    wlp4s0: skip - disabled temporarily for 3 second(s)
    wlp4s0: 6: 00:1b:2b:a5:50:71 ssid='psk.troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-88
    wlp4s0: skip - disabled temporarily for 3 second(s)
    wlp4s0: 7: 00:1b:2b:a5:50:72 ssid='troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-89
    wlp4s0: skip - disabled temporarily for 3 second(s)
    wlp4s0: 8: 00:1b:2b:a5:50:70 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-89
    wlp4s0: skip - disabled temporarily for 3 second(s)
    wlp4s0: 9: d4:ca:6d:a4:c7:1b ssid='CSADCL_FREE' wpa_ie_len=0 rsn_ie_len=0 caps=0x1 level=-80
    wlp4s0: skip - disabled temporarily for 3 second(s)
    wlp4s0: No suitable network found
    wlp4s0: Setting scan request: 5 sec 0 usec
    wlp4s0: Checking for other virtual interfaces sharing same radio (phy0) in event_scan_results
    Scan SSID - hexdump_ascii(len=7):
    65 64 75 72 6f 61 6d eduroam
    wlp4s0: Starting AP scan for wildcard SSID (Interleave with specific)
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b19 len=16
    wlp4s0: Event SCAN_RESULTS (3) received
    Scan results did not fit - trying larger buffer (8192 bytes)
    Received 4574 bytes of scan results (10 BSSes)
    wlp4s0: BSS: Start scan result update 4
    BSS: last_scan_res_used=10/32 last_scan_full=0
    wlp4s0: New scan results available
    wlp4s0: Selecting BSS from priority group 5
    wlp4s0: 0: 00:1b:2b:a5:30:80 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-55
    wlp4s0: CTRL-EVENT-SSID-REENABLED id=0 ssid="eduroam"
    wlp4s0: selected based on RSN IE
    wlp4s0: selected BSS 00:1b:2b:a5:30:80 ssid='eduroam'
    wlp4s0: Request association: reassociate: 0 selected: 00:1b:2b:a5:30:80 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
    wlp4s0: Trying to associate with 00:1b:2b:a5:30:80 (SSID='eduroam' freq=2437 MHz)
    wlp4s0: Cancelling scan request
    wlp4s0: WPA: clearing own WPA/RSN IE
    wlp4s0: Automatic auth_alg selection: 0x1
    RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0
    RSN: Search for BSSID 00:1b:2b:a5:30:80
    RSN: No PMKSA cache entry found
    wlp4s0: RSN: using IEEE 802.11i/D9.0
    wlp4s0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 1 proto 2
    WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 01 28 00
    WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 28 00
    wlp4s0: WPA: using GTK TKIP
    wlp4s0: WPA: using PTK CCMP
    wlp4s0: WPA: using KEY_MGMT 802.1X
    WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 00 00
    wlp4s0: No keys have been configured - skip key clearing
    wlp4s0: State: SCANNING -> ASSOCIATING
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    Limit connection to BSSID 00:1b:2b:a5:30:80 freq=2437 MHz based on scan results (bssid_set=0)
    wlp4s0: set_disable_max_amsdu: -1
    wlp4s0: set_ampdu_factor: -1
    wlp4s0: set_ampdu_density: -1
    wlp4s0: set_disable_ht40: 0
    wlp4s0: set_disable_sgi: 0
    wpa_driver_wext_associate
    wpa_driver_wext_set_drop_unencrypted
    wpa_driver_wext_set_psk
    ioctl[SIOCSIWFREQ]: Operation not supported
    wlp4s0: Association request to the driver failed
    wlp4s0: Setting authentication timeout: 5 sec 0 usec
    EAPOL: External notification - EAP success=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - EAP fail=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portControl=Auto
    EAPOL: Supplicant port status: Unauthorized
    RSN: Ignored PMKID candidate without preauth flag
    RSN: Ignored PMKID candidate without preauth flag
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b1a len=16
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b06 len=12
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b1a len=23
    wlp4s0: Authentication with 00:1b:2b:a5:30:80 timed out.
    Added BSSID 00:1b:2b:a5:30:80 into blacklist
    wlp4s0: Request to deauthenticate - bssid=00:00:00:00:00:00 pending_bssid=00:1b:2b:a5:30:80 reason=3 state=ASSOCIATING
    wpa_driver_wext_deauthenticate
    wlp4s0: Event DEAUTH (12) received
    wlp4s0: Deauthentication notification
    wlp4s0: * reason 3 (locally generated)
    Deauthentication frame IE(s) - hexdump(len=0): [NULL]
    wlp4s0: CTRL-EVENT-DISCONNECTED bssid=00:1b:2b:a5:30:80 reason=3 locally_generated=1
    wlp4s0: Auto connect enabled: try to reconnect (wps=0 wpa_state=5)
    wlp4s0: Setting scan request: 0 sec 100000 usec
    BSSID 00:1b:2b:a5:30:80 blacklist count incremented to 2
    wlp4s0: Blacklist count 4 --> request scan in 5000 ms
    wlp4s0: Not rescheduling scan to ensure that specific SSID scans occur
    wlp4s0: Disconnect event - remove keys
    wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
    wlp4s0: State: ASSOCIATING -> DISCONNECTED
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portValid=0
    EAPOL: Supplicant port status: Unauthorized
    wlp4s0: No keys have been configured - skip key clearing
    wlp4s0: State: DISCONNECTED -> DISCONNECTED
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portValid=0
    EAPOL: Supplicant port status: Unauthorized
    wlp4s0: Not rescheduling scan to ensure that specific SSID scans occur
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b1a len=16
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b15 len=24
    Wireless event: new AP: 00:00:00:00:00:00
    wlp4s0: Event DISASSOC (1) received
    wlp4s0: Disassociation notification
    wlp4s0: Auto connect enabled: try to reconnect (wps=0 wpa_state=0)
    wlp4s0: Do not request new immediate scan
    wlp4s0: Disconnect event - remove keys
    wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0
    wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0
    wlp4s0: State: DISCONNECTED -> DISCONNECTED
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    EAPOL: External notification - portEnabled=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portValid=0
    EAPOL: Supplicant port status: Unauthorized
    wlp4s0: State: DISCONNECTED -> SCANNING
    Scan SSID - hexdump_ascii(len=7):
    65 64 75 72 6f 61 6d eduroam
    wlp4s0: Starting AP scan for specific SSID: eduroam
    Scan requested (ret=0) - scan timeout 30 seconds
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b19 len=16
    wlp4s0: Event SCAN_RESULTS (3) received
    Scan results did not fit - trying larger buffer (8192 bytes)
    Received 4592 bytes of scan results (10 BSSes)
    wlp4s0: BSS: Start scan result update 5
    BSS: last_scan_res_used=10/32 last_scan_full=0
    wlp4s0: New scan results available
    wlp4s0: Selecting BSS from priority group 5
    wlp4s0: 0: 00:1b:2b:a5:30:82 ssid='troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-55
    wlp4s0: skip - SSID mismatch
    wlp4s0: 1: 00:1b:2b:a5:30:81 ssid='psk.troja.mff.cuni.cz' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-55
    wlp4s0: skip - SSID mismatch
    wlp4s0: 2: 00:1b:2b:a5:30:80 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-62
    wlp4s0: skip - blacklisted (count=2 limit=0)
    wlp4s0: 3: 00:1a:30:e6:40:60 ssid='eduroam' wpa_ie_len=24 rsn_ie_len=20 caps=0x11 level=-80
    wlp4s0: selected based on RSN IE
    wlp4s0: selected BSS 00:1a:30:e6:40:60 ssid='eduroam'
    wlp4s0: Request association: reassociate: 1 selected: 00:1a:30:e6:40:60 bssid: 00:00:00:00:00:00 pending: 00:00:00:00:00:00 wpa_state: SCANNING
    wlp4s0: Trying to associate with 00:1a:30:e6:40:60 (SSID='eduroam' freq=2412 MHz)
    wlp4s0: Cancelling scan request
    wlp4s0: WPA: clearing own WPA/RSN IE
    wlp4s0: Automatic auth_alg selection: 0x1
    RSN: PMKSA cache search - network_ctx=(nil) try_opportunistic=0
    RSN: Search for BSSID 00:1a:30:e6:40:60
    RSN: No PMKSA cache entry found
    wlp4s0: RSN: using IEEE 802.11i/D9.0
    wlp4s0: WPA: Selected cipher suites: group 8 pairwise 16 key_mgmt 1 proto 2
    WPA: set AP WPA IE - hexdump(len=26): dd 18 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 01 28 00
    WPA: set AP RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 28 00
    wlp4s0: WPA: using GTK TKIP
    wlp4s0: WPA: using PTK CCMP
    wlp4s0: WPA: using KEY_MGMT 802.1X
    WPA: Set own WPA IE default - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 00 00
    wlp4s0: No keys have been configured - skip key clearing
    wlp4s0: State: SCANNING -> ASSOCIATING
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    Limit connection to BSSID 00:1a:30:e6:40:60 freq=2412 MHz based on scan results (bssid_set=0)
    wlp4s0: set_disable_max_amsdu: -1
    wlp4s0: set_ampdu_factor: -1
    wlp4s0: set_ampdu_density: -1
    wlp4s0: set_disable_ht40: 0
    wlp4s0: set_disable_sgi: 0
    wpa_driver_wext_associate
    wpa_driver_wext_set_drop_unencrypted
    wpa_driver_wext_set_psk
    ioctl[SIOCSIWFREQ]: Operation not supported
    wlp4s0: Association request to the driver failed
    wlp4s0: Setting authentication timeout: 5 sec 0 usec
    EAPOL: External notification - EAP success=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - EAP fail=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portControl=Auto
    EAPOL: Supplicant port status: Unauthorized
    RSN: Ignored PMKID candidate without preauth flag
    RSN: Ignored PMKID candidate without preauth flag
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b1a len=16
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b06 len=12
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b1a len=23
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8c07 len=111
    AssocReq IE wireless event - hexdump(len=95): 00 07 65 64 75 72 6f 61 6d 01 08 82 84 8b 96 24 30 48 6c 21 02 0b 14 24 02 01 0e 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 0c 00 32 04 0c 12 18 60 7f 08 00 00 00 00 00 00 00 40 dd 09 00 10 18 02 00 00 00 00 00 dd 07 00 50 f2 02 00 01 00 00 00 00 00 00 00 00 00 00 00
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8c08 len=64
    AssocResp IE wireless event - hexdump(len=48): 01 08 82 84 8b 96 24 30 48 6c 32 04 0c 12 18 60 dd 18 00 50 f2 02 01 01 85 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 00 00 00 00 00 00
    RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP])
    RTM_NEWLINK, IFLA_IFNAME: Interface 'wlp4s0' added
    WEXT: if_removed already cleared - ignore event
    Wireless event: cmd=0x8b15 len=24
    Wireless event: new AP: 00:1a:30:e6:40:60
    wlp4s0: Event ASSOCINFO (4) received
    wlp4s0: Association info event
    req_ies - hexdump(len=95): 00 07 65 64 75 72 6f 61 6d 01 08 82 84 8b 96 24 30 48 6c 21 02 0b 14 24 02 01 0e 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 0c 00 32 04 0c 12 18 60 7f 08 00 00 00 00 00 00 00 40 dd 09 00 10 18 02 00 00 00 00 00 dd 07 00 50 f2 02 00 01 00 00 00 00 00 00 00 00 00 00 00
    resp_ies - hexdump(len=48): 01 08 82 84 8b 96 24 30 48 6c 32 04 0c 12 18 60 dd 18 00 50 f2 02 01 01 85 00 03 a4 00 00 27 a4 00 00 42 43 5e 00 62 32 2f 00 00 00 00 00 00 00
    WPA: set own WPA/RSN IE - hexdump(len=22): 30 14 01 00 00 0f ac 02 01 00 00 0f ac 04 01 00 00 0f ac 01 0c 00
    wlp4s0: Event ASSOC (0) received
    wlp4s0: State: ASSOCIATING -> ASSOCIATED
    wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT)
    netlink: Operstate: linkmode=-1, operstate=5
    wlp4s0: Associated to a new BSS: BSSID=00:1a:30:e6:40:60
    wlp4s0: No keys have been configured - skip key clearing
    wlp4s0: Associated with 00:1a:30:e6:40:60
    wlp4s0: WPA: Association event - clear replay counter
    wlp4s0: WPA: Clear old PTK
    EAPOL: External notification - portEnabled=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portValid=0
    EAPOL: Supplicant port status: Unauthorized
    EAPOL: External notification - portEnabled=1
    EAPOL: SUPP_PAE entering state CONNECTING
    EAPOL: enable timer tick
    EAPOL: SUPP_BE entering state IDLE
    EAP: EAP entering state INITIALIZE
    EAP: deinitialize previously used EAP method (25, PEAP) at INITIALIZE
    ENGINE: engine deinit
    EAP: EAP entering state IDLE
    wlp4s0: Setting authentication timeout: 10 sec 0 usec
    wlp4s0: Cancelling scan request
    wlp4s0: RX EAPOL from 00:1a:30:e6:40:60
    RX EAPOL - hexdump(len=49): 01 00 00 2d 01 01 00 2d 01 00 6e 65 74 77 6f 72 6b 69 64 3d 65 64 75 72 6f 61 6d 2c 6e 61 73 69 64 3d 61 6f 70 31 6a 7a 2c 70 6f 72 74 69 64 3d 30
    wlp4s0: Setting authentication timeout: 70 sec 0 usec
    EAPOL: Received EAP-Packet frame
    EAPOL: SUPP_PAE entering state RESTART
    EAP: EAP entering state INITIALIZE
    EAP: EAP entering state IDLE
    EAPOL: SUPP_PAE entering state AUTHENTICATING
    EAPOL: SUPP_BE entering state REQUEST
    EAPOL: getSuppRsp
    EAP: EAP entering state RECEIVED
    EAP: Received EAP-Request id=1 method=1 vendor=0 vendorMethod=0
    EAP: EAP entering state IDENTITY
    wlp4s0: CTRL-EVENT-EAP-STARTED EAP authentication started
    EAP: EAP-Request Identity data - hexdump_ascii(len=40):
    00 6e 65 74 77 6f 72 6b 69 64 3d 65 64 75 72 6f _networkid=eduro
    61 6d 2c 6e 61 73 69 64 3d 61 6f 70 31 6a 7a 2c am,nasid=aop1jz,
    70 6f 72 74 69 64 3d 30 portid=0
    EAP: using real identity - hexdump_ascii(len=16):
    ----------------I've removed my login-------------------
    EAP: EAP entering state SEND_RESPONSE
    EAP: EAP entering state IDLE
    EAPOL: SUPP_BE entering state RESPONSE
    EAPOL: txSuppRsp
    TX EAPOL: dst=00:1a:30:e6:40:60
    TX EAPOL - hexdump(len=25): 01 00 00 15 02 01 00 15 01 31 39 38 33 30 36 36 38 40 63 75 6e 69 2e 63 7a
    EAPOL: SUPP_BE entering state RECEIVE
    wlp4s0: RX EAPOL from 00:1a:30:e6:40:60
    RX EAPOL - hexdump(len=46): 01 00 00 06 01 02 00 06 19 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    EAPOL: Received EAP-Packet frame
    EAPOL: SUPP_BE entering state REQUEST
    EAPOL: getSuppRsp
    EAP: EAP entering state RECEIVED
    EAP: Received EAP-Request id=2 method=25 vendor=0 vendorMethod=0
    EAP: EAP entering state GET_METHOD
    wlp4s0: CTRL-EVENT-EAP-PROPOSED-METHOD vendor=0 method=25
    EAP: Status notification: accept proposed method (param=PEAP)
    EAP: Initialize selected EAP method: vendor 0 method 25 (PEAP)
    TLS: Phase2 EAP types - hexdump(len=8): 00 00 00 00 1a 00 00 00
    TLS: using phase1 config options
    TLS: Trusted root certificate(s) loaded
    wlp4s0: CTRL-EVENT-EAP-METHOD EAP vendor 0 method 25 (PEAP) selected
    EAP: EAP entering state METHOD
    SSL: Received packet(len=6) - Flags 0x20
    EAP-PEAP: Start (server ver=0, own ver=1)
    EAP-PEAP: Using PEAP version 0
    SSL: (where=0x10 ret=0x1)
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:before/connect initialization
    SSL: (where=0x1001 ret=0x1)
    SSL: SSL_connect:SSLv3 write client hello A
    SSL: (where=0x1002 ret=0xffffffff)
    SSL: SSL_connect:error in SSLv3 read server hello A
    SSL: SSL_connect - want more data
    SSL: 223 bytes pending from ssl_out
    SSL: 223 bytes left to be sent out (of total 223 bytes)
    EAP: method process -> ignore=FALSE methodState=MAY_CONT decision=FAIL
    EAP: EAP entering state SEND_RESPONSE
    EAP: EAP entering state IDLE
    EAPOL: SUPP_BE entering state RESPONSE
    EAPOL: txSuppRsp
    TX EAPOL: dst=00:1a:30:e6:40:60
    TX EAPOL - hexdump(len=237): 01 00 00 e9 02 02 00 e9 19 80 00 00 00 df 16 03 01 00 da 01 00 00 d6 03 01 47 97 a0 0d ad 29 ac e0 b4 92 69 89 47 ca 82 4e 60 97 c4 ea 0c 8b 8d 0e 3f e0 e7 18 a6 33 17 06 00 00 68 c0 14 c0 0a c0 22 c0 21 00 39 00 38 00 88 00 87 c0 0f c0 05 00 35 00 84 c0 12 c0 08 c0 1c c0 1b 00 16 00 13 c0 0d c0 03 00 0a c0 13 c0 09 c0 1f c0 1e 00 33 00 32 00 9a 00 99 00 45 00 44 c0 0e c0 04 00 2f 00 96 00 41 00 07 c0 11 c0 07 c0 0c c0 02 00 05 00 04 00 15 00 12 00 09 00 14 00 11 00 08 00 06 00 03 00 ff 01 00 00 45 00 0b 00 04 03 00 01 02 00 0a 00 34 00 32 00 0e 00 0d 00 19 00 0b 00 0c 00 18 00 09 00 0a 00 16 00 17 00 08 00 06 00 07 00 14 00 15 00 04 00 05 00 12 00 13 00 01 00 02 00 03 00 0f 00 10 00 11 00 0f 00 01 01
    EAPOL: SUPP_BE entering state RECEIVE
    wlp4s0: RX EAPOL from 00:1a:30:e6:40:60
    RX EAPOL - hexdump(len=1038): 01 00 04 0a 01 03 04 0a 19 c0 00 00 09 a7 16 03 01 00 51 02 00 00 4d 03 01 52 d9 2a 65 84 4a db e1 6a f0 8d c6 6a ea 91 ba 2f 0c 07 b1 58 2e 5b 3e 4e a4 bd 42 1d 0d f0 68 20 f9 fc f8 42 57 c7 8c 68 30 f6 51 38 d6 f5 d2 9e fc 54 23 1b 4c 76 18 33 96 46 1a 1b 52 be c5 a7 00 35 00 00 05 ff 01 00 01 00 16 03 01 09 43 0b 00 09 3f 00 09 3c 00 04 9a 30 82 04 96 30 82 03 7e a0 03 02 01 02 02 11 00 91 2e 01 7f 78 f8 b5 1f 5e 7b a2 4a b9 12 dc e4 30 0d 06 09 2a 86 48 86 f7 0d 01 01 05 05 00 30 36 31 0b 30 09 06 03 55 04 06 13 02 4e 4c 31 0f 30 0d 06 03 55 04 0a 13 06 54 45 52 45 4e 41 31 16 30 14 06 03 55 04 03 13 0d 54 45 52 45 4e 41 20 53 53 4c 20 43 41 30 1e 17 0d 31 33 30 39 32 34 30 30 30 30 30 30 5a 17 0d 31 36 30 39 32 33 32 33 35 39 35 39 5a 30 45 31 21 30 1f 06 03 55 04 0b 13 18 44 6f 6d 61 69 6e 20 43 6f 6e 74 72 6f 6c 20 56 61 6c 69 64 61 74 65 64 31 20 30 1e 06 03 55 04 03 13 17 72 61 64 69 75 73 31 2e 65 64 75 72 6f 61 6d 2e 63 75 6e 69 2e 63 7a 30 82 01 22 30 0d 06 09 2a 86 48 86 f7 0d 01 01 01 05 00 03 82 01 0f 00 30 82 01 0a 02 82 01 01 00 b5 4f 36 a8 e3 09 5f 0d 59 f1 56 fe 5b c3 71 f6 36 ac 78 66 05 e6 cf 72 7e 6b 5d b6 d1 38 11 3c c0 c1 42 42 2a 95 18 12 91 77 3a 83 5f 32 90 27 46 21 f1 1b 09 45 57 0d 4c 16 99 76 c7 18 8f ec 40 dd 55 48 a8 64 6e 8b 2f 5b 76 90 c9 3a 97 6b d7 62 66 4e f5 7c 0d 67 1a 02 b7 e1 59 44 ce d4 79 c1 58 44 ef b2 1d 96 64 52 0f 8c 19 80 60 20 57 e9 1b 77 dd df 2a 9e 50 1d c8 92 33 2a 80 ba 5e ac 09 d1 af 50 4c 19 ce c9 1b 4a fc 7e 7d 4b 55 17 b5 bc d6 d7 e6 77 f7 25 c9 0a 93 af 6e 5a 04 d0 7d 8c 8e 17 ae 7d ed 95 85 c2 9f 41 9b 56 89 a2 e3 9f 6c ea a2 fc fe a2 2a b6 66 66 5e 7e 6b 02 bc 8e a3 3b b1 54 31 4c 6c 12 72 f9 4d 6e 7f ec d6 84 45 c2 84 5a 84 37 90 78 61 92 10 7c 0f 97 bf 5f 0d d1 04 8f 4c 99 43 53

Maybe you are looking for