Search:

Type: Posts; User: geewhan

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,802

    I am waiting for the person who has helped me,...

    I am waiting for the person who has helped me, but he/she hasn't responded for awhile so may be someone knows this.
    Someone mention me something about the .config file, is that referring to kconfig...
  2. Replies
    5
    Views
    1,802

    So far I have done that steps on editing the...

    So far I have done that steps on editing the MAKEFILE and the Kconfig file. Where I see veno, I copy and paste another line(s) of code and replace it with the word "quic".
    What I put in the MAKEFILE...
  3. Replies
    5
    Views
    1,802

    How to add .o file in the Linux Kernel

    I would like to know how would you enable the Congestion Control Algorithm correctly (lets call it Tcp_quic or quic).


    My code is almost exactly like the tcp_veno.c file. Just the algorithm in...
  4. Replies
    7
    Views
    7,852

    King Mir, Do you mean first use unsigned char...

    King Mir,

    Do you mean first use unsigned char data[1024];
    then int a = data[1024]?

    I ask this because it gives me the range 0-255 (so far I haven't seen a negative number or higher than 255),...
  5. Replies
    7
    Views
    7,852

    King Mir, I did your suggestions to do...

    King Mir,

    I did your suggestions to do unsigned char data and I still got the same results

    It outputs something like this:
    ‘70X‰Z=!FL[’™kJ’¶

    Here is the somewhat the code. To be honest all...
  6. Replies
    7
    Views
    7,852

    This does not show all the code I have in main. ...

    This does not show all the code I have in main.

    Assume i has been initialize
    that while loop i == 16 is for testing.
    I want to see what is my first 16 values so the terminal does not exist.
  7. Replies
    7
    Views
    7,852

    How to read an 8 bit Raw Image

    What I would like to do is read
    a raw Image in decimal (8 bits, so value 0 - 255)

    The code below is something I have started. When I tested it prints out numbers, letters, and ! ? etc.
    I...
  8. Replies
    3
    Views
    1,805

    I am looking at the examples of...

    I am looking at the examples of boost::dynamic_bitset. So far I am seeing that it sets or clear the bits.
    How is that reading the data in the file.

    I think you are right about reading char by...
  9. Replies
    3
    Views
    1,805

    How to read bit by bit in a file

    My question is that


    assume that you have a file with hundred's of 0's or 1's (binary)
    example:
    10010101010101101
    10101010101010111
    .......
  10. I just realize that in the Linux Kernel...

    I just realize that in the Linux Kernel folder(kernel\linux-3.3.6\net\ipv4), where I added the tcp_quic.c file, does not have .mod.o or .o file. With means that the tcp_quic.c did not compile...
  11. How to add a C file and Enable it in Linux Kernel?

    I would like to know how would you enable the Congestion Control Algorithm correctly (lets call it Tcp_quic or quic).


    My code is almost exactly like the tcp_veno.c file. Just the algorithm in...
  12. Replies
    2
    Views
    3,370

    How to subtract string arrays?

    I was wondering if someone could tell me how to subtract two string arrays. I use getline() that is why the array is a string. It is in my main, but the below code is my function.
    Also the data...
  13. Replies
    6
    Views
    6,274

    Ugh Didn't want to go to this, but I am using...

    Ugh Didn't want to go to this, but I am using Visual C++ instead of Eclipse.
  14. Replies
    6
    Views
    6,274

    As you can see that I have stated that I did put...

    As you can see that I have stated that I did put that line of
    directory in the Path; unless, you are talking about a different PATH

    I put it in the control Panel -> System and Security -> System...
  15. Replies
    6
    Views
    6,274

    Eclipse gcc/g++ run program Warnings

    I understand this is for C++ coding forums, but I thought that some people use Eclipse for their coding. So if you do not mind letting me post my problem I appreciate it. Thanks

    I am trying to...
  16. grumpy: May I ask how did you used fixed point...

    grumpy:

    May I ask how did you used fixed point in your problem because those two functions, kernel_fpu_begin() and kernel_fpu_end(), did not work. So another method for solving this floating...
  17. Thank you guys for your help. christop: Yes...

    Thank you guys for your help.

    christop:
    Yes this is for the Linux Kernel. I am really interested using the fixed point you suggested. My research partner and I have talked about this filter...
  18. How to use a float/double without using float/double keyword?

    I know this is weird to ask, but how do you set a variable as a decimal without using the keywords float/double?


    I ask this because when I am compiling the Kernel I get an error when I use...
  19. Replies
    1
    Views
    1,739

    What enables Tcp_Vegas in the Kernel?

    I would like to know if someone could tell me in the tcp.c file which function/line of code that enables the congestion avoidance algorithm.


    I believe that this function/line of code enables the...
  20. Replies
    15
    Views
    8,110

    phantomotap: I actually did not know that FAST...

    phantomotap:

    I actually did not know that FAST TCP best usage is in multiple machines, but thank you for telling me something new.
    I am not doing any that big.

    Right now I am looking where I...
  21. Replies
    15
    Views
    8,110

    Well even with discouragement I would still at...

    Well even with discouragement I would still at least try. If it is still okay would like to ask questions.

    So when I go to the directory on my Desktop Linux...
  22. Replies
    15
    Views
    8,110

    The code I attached on my first post is where I...

    The code I attached on my first post is where I got the link you have posted. To be honest looking through all those codes are unreasonable.
    I see all the multiple tcp_xxx.c files, but I do not know...
  23. Replies
    15
    Views
    8,110

    Where is the TCP source code in Ubuntu 10.04?

    I was wondering if anyone knows where the TCP source code is located in Ubuntu 10.04
    I ask because I would like to modify the code (like how Cal Tech modify it to FAST TCP)
    I try the directory...
  24. Replies
    4
    Views
    2,876

    dmh2000, If you do not mind if I could give...

    dmh2000,

    If you do not mind if I could give an example what I am trying to understand. All I want is a multiple instant message where if one guy sends a message everyone gets that message..
    ...
  25. Replies
    4
    Views
    2,876

    Socket: Client question

    Hello,

    I am trying to write a client code in C. What I would like to do is create like an Instant message server-client socket. Where I want to have one Server and multiple Clients. I come to a...
Results 1 to 25 of 39
Page 1 of 2 1 2