Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 612217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:52:09+00:00 2026-05-13T17:52:09+00:00

I’m working on a networking assignment and we are tasked with creating a remote

  • 0

I’m working on a networking assignment and we are tasked with creating a remote file access server with a protocol we were given. My difficulties come in the lack of information I can find that explains the process of calculating the bits for the oflag argument in open().

I receive a message from a client to open a file and in the message I parse characters for the flags to use in oflag. Specifically they are:

  • R – O_RDONLY
  • W – O_WRONLY
  • RW – O_RDWR
  • A – O_APPEND
  • C – O_CREAT
  • T – O_TRUNC
  • E – O_EXCL

I went around Google and searched bitwise operations, enumeration flags, bit flags, calculating bit flags, etc. and couldn’t find something that was useful in figuring out how to create the bits for oflag. Maybe I just didn’t know what I was looking for and overlooked useful information?

Could someone please:

  • Point me in the direction/provide links to documentation/example of how to calculate the bits/# I ought to put into oflags given my parsed characters or
  • Show me the enumeration types for the flags and the ordering they ought to go in

Thanks a bunch for you help and if I wasn’t clear on my problem or what I am trying to do, just let me know and I will clarify ASAP.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T17:52:09+00:00Added an answer on May 13, 2026 at 5:52 pm

    The O_... flags are numbers each with a different single bit set. For example on my system they are defined in fcntl.h as

    #define O_RDONLY             00
    #define O_WRONLY             01
    #define O_RDWR               02
    #define O_CREAT            0100 /* not fcntl */
    #define O_EXCL             0200 /* not fcntl */
    #define O_NOCTTY           0400 /* not fcntl */
    #define O_TRUNC           01000 /* not fcntl */
    #define O_APPEND          02000
    

    You use | (logical OR) to combine the flags and pass in a single number to open with all the bits set for each option you want. So e.g. open("file", O_RDWR | O_CREAT).

    You can compute an int and pass that into open too if you want.

    int flags = 0;
    if (...)
        flags |= O_RDWR;
    ...
    open('file', flags);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 385k
  • Answers 385k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer First of all, even though you don't want to introduce… May 14, 2026 at 11:34 pm
  • Editorial Team
    Editorial Team added an answer I don't know of a global way of doing this… May 14, 2026 at 11:34 pm
  • Editorial Team
    Editorial Team added an answer It appears you're compiling the Nehemiah.Specs.dll assembly against the .NET… May 14, 2026 at 11:34 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.