Git Product home page Git Product logo

odinmobile's People

Watchers

 avatar

odinmobile's Issues

Improper function definition in iOS ODIN.h

NSString * ODIN1();

is not the right function signature. (ODIN.h:19) 

Remember that .h files paired with .m files get parsed as pure C, which means 
that you have to declare them as:

NSString * ODIN1(void);

This is because an empty () in a forward declaration of a function means that 
the function can take an arbitrary amount of parameters.)

Original issue reported on code.google.com by [email protected] on 5 Feb 2013 at 7:24

ODIN throws exception on Windows Phone 8

What steps will reproduce the problem?
1. Try to get ODIN value in WP8 application
2. Throws Exception.
3.

What is the expected output? What do you see instead?
I want to get the ODIN Value. Instead, it throws an exception because the 
Windows Phone api call is deprecated.

What version of the product are you using? On what operating system?
Windows Phone 8 emulator in Windows 8.

Please provide any additional information below.
OpenUDID uses the same mechanism - I opened up a identical issue here:
https://github.com/jasonlamkk/OpenUDID.Net/issues/1

Original issue reported on code.google.com by [email protected] on 5 Nov 2012 at 11:26

Standardized format seed

In all of the cases, there is no standard written to follow for hashing (that 
is clear to me anyways)

Example for mac address:
I can hash the actual bytes, hex codes in ascii Upper, or ascii lower, hex 
codes in ascii with "-" or ":" separators; it all depends on how I receive the 
mac address.

If there were a prescribed standard, it would prevent different implementations 
from generating different hashes for the same ID.

"Mac address must be the raw bytes" or "Mac address must be the lower case 
ascii hex codes without a separator".  That keeps people like me from messing 
it up.

The same goes for the other identifiers, although there is a standard API call, 
it would be nice to have a standard format to ensure we are making a standard 
ODIN hash.

Original issue reported on code.google.com by [email protected] on 2 Apr 2012 at 2:46

Memory leak in ODIN1 initialization

    if ((buf = malloc(len)) == NULL) {
        //NSLog(@"ODIN-1.1: malloc error");
        return nil;
    }

    if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) {
        //NSLog(@"ODIN-1.1: sysctl 2 error");
        return nil;
    }


if sysctl returns an error code, buf will not be released

Original issue reported on code.google.com by [email protected] on 5 Feb 2013 at 7:15

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.