Giter VIP home page Giter VIP logo

rcom's People

Contributors

bmpj13 avatar helderantunes avatar inesfproenca avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

manj-pc

rcom's Issues

Possível problema com REJ em llread()

Quando se deteta erros no campo de dados (BCC deu errado), só deve ser enviado REJ se se tratar de uma nova trama. Quando a trama recebida é duplicada deve ser enviado RR.

Possível substituição nas linhas 454-465 de LinkLayer.c

`

if (destuffedFrame[destuffedSize-2] != BCC2) {
    printf("ERROR in llread(): BCC2 error\n");

    unsigned int  seq = destuffedFrame[2] >> 6;
    if (seq == linkLayer.sequenceNumber) { // nova trama

        //Send Reject
        if(seq == 0){
            unsigned char C_REJ0 = (0 << 7) | C_REJ;
            sendFrame(fd, A_SENDER, C_REJ0);
        }
        else if(seq == 1){
            unsigned char C_REJ1 = (1 << 7) | C_REJ;
            sendFrame(fd, A_SENDER, C_REJ1);
        }
    }
    else { // trama duplicada
        if(seq == 0){
            int C_RR1 = (1 << 7) | C_RR;
            sendFrame(fd, A_SENDER, C_RR1);
        }
        else if(seq == 1){
            int C_RR0 = (0 << 7) | C_RR;
            sendFrame(fd, A_SENDER, C_RR0);
        }
    }
}

`

Está melhor descrito na página 11 do guião.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.